body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: #e2f9fb; 
            min-height: 100vh;
        }

        /* Hero Image Section */

        .hero-quote {
            font-family: 'Pacifico', cursive;
            color: white;
            font-size: 36px;
            margin-right: 5%;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.4);
        }

        /* Content Wrapper */
        .content-section {
            display: flex;
            max-width: 1150px;
            margin: 50px auto;
            padding: 0 20px;
            gap: 40px;
            align-items: flex-start;
        }

        /* Left Side: Welcome */
        .sidebar {
            flex: 1;
            text-align: left;
            padding-left: 10px;
        }

        .welcome-title {
            font-size: 24px;
            color: #333;
            margin-bottom: -15px; 
            font-weight: 400;
        }

        .brand-logo {
            font-family: 'Pacifico', cursive; 
            font-size: 64px;
            color: #000; 
            margin-bottom: 20px;
            display: block;
        }

        .brand-logo span {
            color: #1b2e91; 
        }

        .welcome-text {
            color: #666;
            font-size: 11px;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 340px;
        }

        .btn-upload {
            background-color: #1b2e91;
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            letter-spacing: 0.5px;
        }

        .btn-upload:hover {
            transition: 0.5s;
            background-color: #050B88;
        }

        /* Right Side: Article */
        .article-area {
            flex: 2;
            border-top: 1px solid #a0a0a0;
            border-bottom: 1px solid #a0a0a0;
            padding: 25px 0;
        }

        .article-label {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .article-container {
            display: flex;
            gap: 20px;
        }

        .article-img-box {
            border: 3px solid #5fb9e1;
            line-height: 0;
            flex-shrink: 0;
        }

        .article-img-box img {
            width: 300px;
            height: 200px;
            object-fit: cover;
        }

        .article-content {
            display: flex;
            flex-direction: column;
        }

        .article-content a {
            text-decoration: none;
        }

        .article-content h2 {
            font-size: 17px;
            margin: 0 0 10px 0;
            line-height: 1.3;
            color: #000;
        }

        .article-content h2:hover {
            transition: 0.3s;
            text-shadow: 0px 3px 2px grey;
        }

        .article-content p {
            font-size: 12px;
            color: #444;
            line-height: 1.6;
            margin: 0;
        }

        .article-date {
            font-size: 11px;
            color: #888;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .hero-banner {
                height: 250px;
                justify-content: center;
                text-align: center;
            }

            .hero-quote {
                font-size: 24px;
                margin-right: 0;
                padding: 0 20px;
            }

            .content-section {
                flex-direction: column;
                margin: 20px auto;
                gap: 30px;
            }

            .sidebar {
                text-align: center;
                padding-left: 0;
            }

            .brand-logo {
                font-size: 48px;
            }

            .welcome-text {
                max-width: 100%;
                margin: 0 auto 20px auto;
            }

            .article-container {
                flex-direction: column;
                align-items: center;
            }

            .article-img-box img {
                width: 100%;
                height: auto;
            }

            .article-content {
                text-align: center;
                margin-top: 15px;
            }
        }