@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
/* @media (max-width: 768px) {
    section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
} */
/* ====================================
   EXTRACTED CSS FROM ORIGINAL FILES
   ==================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
            line-height: 1.6;
            color: #333;
            font-size: 20px;
        }

        h2 {
            font-size: 34px;
        }
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
        } */
        /* Header */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #2d3086;
            letter-spacing: 1px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #2d3086;
        }

        .lang-flags {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .flag {
            width: 20px;
            height: 14px;
            cursor: pointer;
        }

        /* Hero Banner */
        .hero-banner {
            color: white;
            padding: 0 0 30px;
            text-align: center;
            position: relative;
            background-image: none;
        }

        .hero-banner .hero-banner-container {
            /* padding: 0; */
            img {
                width: 100%;
            }
        }

        .hero-banner h1 {
            font-size: 38px;
            margin-bottom: 8px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .hero-banner p {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .yellow-btn {
            background: #fbbf24;
            color: #2d3086;
            padding: 12px 35px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            display: inline-block;
            text-decoration: none;
        }

        /* Main Hero Content */
        .hero-content-wrapper {
            background-color: transparent;
        }

        .hero-grid {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
        }

        .hero-grid img {
            width: 100%;
            height: auto;
            max-width: 735px;
        }

        /* Benefits Box */
        .benefits-box {
            background: #2d3086;
            padding: 35px;
            border-radius: 8px;
            color: white;
        }

        .benefits-box h2 {
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 16px;
            line-height: 1.4;
        }

        .check-icon {
            width: 28px;
            height: 28px;
            background: #fbbf24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
            font-weight: bold;
            color: #2d3086;
        }

        .yellow-highlight {
            background: #fbbf24;
            color: #2d3086;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }

        /* Registration Form */
        .registration-box {
            width: 45%;
            min-width: 360px;
            margin: 0;
            background: transparent;
            padding: 30px;
            border-radius: 8px;
            padding-right: 0;
        }

        .registration-box h3 {
            color: #2d3086;
            font-size: 24px;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .registration-box h2 {
            color: #2d3086;
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.05;
        }

        .form-field {
            margin-bottom: 12px;
        }

        .form-field input,
        .form-field select {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            font-size: 15px;
            background: white;
        }

        .form-field input::placeholder {
            color: #9ca3af;
        }

        .submit-btn {
            padding: 12px 10px !important;
            width: 50% !important;
            min-width: 160px;
            max-width: 250px;
            margin-top: 24px;
            text-align: center;
            display: block;
            margin-left: 0;
        }

        /* Section Title */
        .section-title {
            font-size: 34px;
            color: #2d3086;
            margin-bottom: 25px;
            text-align: left;
            text-transform: uppercase;
            font-weight: bold;
            line-height: 1.2;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 50px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .testimonial-video {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            /* height: 200px; */
            /* background: #e5e7eb; */
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(239, 68, 68, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            z-index: 10;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            /* background removed */
            padding: 15px;
            color: white;
        }

        .video-overlay h4 {
            font-size: 14px;
            margin-bottom: 3px;
        }

        .video-overlay p {
            font-size: 12px;
        }

        /* Financing Section */
        .financing-section {
            padding: 50px 0;
            background: white;
        }

        .financing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .financing-list {
            list-style: none;
            margin-bottom: 0;
        }

        .financing-list li {
            padding: 8px 0 8px 30px;
            position: relative;
            /* font-size: 20px; */
            line-height: 1.5;
        }

        .financing-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2d3086;
            font-weight: bold;
            font-size: 16px;
        }

        .financing-image-box {
            /* height: 280px; */
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }

        .financing-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .financing-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(37, 99, 235, 0.85)); */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
/* 
        .financing-overlay:hover {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(37, 99, 235, 0.95));
        } */

        .financing-overlay h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .financing-overlay p {
            font-size: 16px;
        }

        .financing-play-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px auto 0;
            transition: all 0.3s;
        }

        .financing-play-btn::after {
            content: '▶';
            font-size: 24px;
            color: white;
            margin-left: 4px;
        }

        .financing-overlay:hover .financing-play-btn {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        /* How-to Section */
        .howto-section {
            padding: 50px 0;
            background: white;
        }

        .howto-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .howto-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
        }

        .howto-card h3 {
            color: #2d3086;
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            text-align: left;
            line-height: 1.2;
        }

        .howto-video {
            position: relative;
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            border-radius: 8px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            cursor: pointer;
        }

        .howto-list {
            list-style: none;
            margin-bottom: 18px;
        }

        .howto-list li {
            padding: 6px 0 6px 25px;
            position: relative;
            /* font-size: 20px; */
            line-height: 1.5;
        }

        .howto-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2d3086;
            font-weight: bold;
        }

        .home-btn {
            background: #2d3086;
            color: white;
            padding: 14px 60px;
            border: none;
            border-radius: 4px;
            font-size: 17px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            width: max-content;
            letter-spacing: 0.05em;
            text-decoration: none;
            display: block;
        }

        /* Solar Panel Info Section */
        .solar-info-section {
            padding: 50px 0;
        }

        .solar-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }

        .solar-text {
            /* font-size: 14px; */
            line-height: 1.8;
        }

        .solar-text h3 {
            color: #2d3086;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .solar-text ul {
            list-style: none;
            margin: 15px 0;
        }

        .solar-text ul li {
            padding: 5px 0 5px 25px;
            position: relative;
            /* font-size: 13px; */
        }

        .solar-text ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2d3086;
            font-weight: bold;
        }

        .solar-image-box {
            height: 420px;
            border-radius: 8px;
            overflow: hidden;
        }

        .solar-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Info Cards */
        .info-cards-section {
            padding: 50px 0;
            background: white;
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .info-card {
            text-align: center;
        }

        .info-card h3 {
            color: #2d3086;
            font-size: 26px;
            margin-bottom: 5px;
            text-transform: uppercase;
            font-weight: bold;
            text-align: left;
        }

        .info-card-image {
            height: 150px;
            background: #e0f2fe;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-card-image img {
            max-width: 80%;
            max-height: 80%;
        }

        /* Publications Section */
        .publications-section {
            padding: 50px 0;
            background: white;
        }

        .publications-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .publication-card {
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }

        .publication-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .publication-content {
            padding: 20px;
        }

        .publication-content h4 {
            color: #2d3086;
            font-size: 22px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .publication-content p {
            /* font-size: 20px; */
            line-height: 1.5;
            margin-bottom: 12px;
            color: #6b7280;
        }

        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2d3086;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

        .download-icon {
            width: 30px;
            height: 30px;
        }

        /* Contact Page */

        .contact-section {
            /* min-height: 100vh; */
            display: flex;
            align-items: flex-start;
            justify-content: center;
            background: #fff;
            padding: 40px 0;
        }

        .contact-section .container {
            display: flex;
            justify-content: center;
        }
        .contact-container {
            display: flex;
            width: 90%;
            max-width: 1200px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
            overflow: hidden;
        }
        .contact-left {
            background: #2d3086;
            color: #fff;
            flex: 1.1;
            padding: 48px 40px 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 340px;
        }
        .contact-left h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 18px;
            line-height: 1.1;
        }
        .contact-left h2 {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 18px;
        }
        .contact-left p {
            margin-bottom: 32px;
        }
        .contact-info {
            margin-top: 24px;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 0;
        }
        .contact-info-item svg {
            margin-right: 16px;
            font-size: 28px;
        }
        .contact-info-item .icon {
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .contact-info-address {
            margin-top: 10px;
            line-height: 1.5;
        }
        .contact-right {
            flex: 1.3;
            background: #fff;
            padding: 48px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contact-form-title {
            color: #2d3086;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 32px;
            text-transform: uppercase;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .contact-form input,
        .contact-form textarea {
            border: 2px solid #2d3086;
            border-radius: 3px;
            padding: 14px 16px;
            font-size: 15px;
            font-family: inherit;
            outline: none;
            resize: none;
        }
        .contact-form textarea {
            min-height: 120px;
        }
        .contact-form button {
            background: #2d3086;
            color: #fff;
            border: none;
            border-radius: 3px;
            padding: 14px 0;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            margin-top: 8px;
            transition: background 0.2s;
        }
        .contact-form button:hover {
            background: #22245e;
        }
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
                min-width: 0;
            }
            .contact-left, .contact-right {
                padding: 32px 18px;
            }
            .contact-left {
                border-radius: 16px 16px 0 0;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                width: 100%;
            }
            /* .container {
                padding: 0 10px;
            } */
            .contact-left h1 {
                font-size: 24px;
            }
            .contact-left h2 {
                font-size: 20px;
            }
            .contact-form-title {
                font-size: 20px;
            }

            .howto-section {
                padding: 0;
            }

            .financing-section {
                padding: 0;
            }

            .info-card {
                padding: 20px 0;
            }

            .financing-grid {
                padding: 25px;
                box-sizing: border-box;
            }

            .financing-list {
                padding-bottom: 20px;
            }
            /* .section-title {
                padding: 25px 0;
                box-sizing: border-box;
            } */
            .testimonials-section {
                padding: 25px;
                box-sizing: border-box;
            }

            .solar-info-section {
                padding: 25px;
                box-sizing: border-box;
            }

            .info-cards-section {
                padding: 25px;
                box-sizing: border-box;
            }

            .publications-section {
                padding: 25px;
                box-sizing: border-box;
            }
            
        }
        @media (max-width: 600px) {
            /* .container {
                padding: 0 4px;
            } */
            /* .contact-left, .contact-right {
                padding: 12px 2px;
            } */
            /* .contact-left h1 {
                font-size: 24px;
            }
            .contact-left h2 {
                font-size: 18px;
            } */
            .contact-left p {
                margin-bottom: 0;
            }
            /* .contact-form-title {
                font-size: 14px;
            }
            .contact-info-item {
                font-size: 16px;
            } */

             .financing-grid {
                padding: 25px;
                box-sizing: border-box;
            }
            /* .section-title {
                padding: 25px 0;
                box-sizing: border-box;
            }
            .testimonials-section .testimonials-grid {
                padding: 25px;
                box-sizing: border-box;
            } */
        }
        @media (max-width: 480px) {
            .contact-left h2 {
                font-size: 17px;
            }
            .contact-form-title {
                font-size: 11px;
            }
            .contact-form input,
            .contact-form textarea {
                padding: 8px 10px;
            }
            .contact-form button {
                font-size: 15px;
                padding: 11px 0;
            }

            .contact-container {
                width: 95%;
            }

            .contact-section {
                padding: 25px 0;
            }

             .financing-grid {
                padding: 25px;
                box-sizing: border-box;
            }

            .info-cards-section,
            .publications-section,
            .howto-section,
            .solar-info-section,
            .testimonials-section,
            .financing-grid {
                padding: 15px 10px;
            }

            .howto-card {
                padding-inline: 0;
            }

            /* Better spacing for mobile lists */
            ul li {
                margin-bottom: 0;
            }


            /* .section-title {
                padding: 25px 0;
                box-sizing: border-box;
            }
            .testimonials-section .testimonials-grid {
                padding: 25px;
                box-sizing: border-box;
            } */
        }
        @media (min-width: 1180px) {
            /* .testimonials-section .container {
                padding: 30px;
            } */

            /* .financing-section .container {
                padding: 30px;
            }

            .solar-info-section .container {
                padding: 30px;
            }

            .info-cards-section .container {
                padding: 30px;
            }

            .publications-section .container {
                padding: 30px;
            } */

            .header-content {
                padding: 0 30px;
            }
        }
            
        
        /* @media (max-width: 1200px) {
            .container {
                max-width: 100vw;
            }
        } */
        @media (max-width: 600px) {
            .contact-form-title {
                font-size: 22px;
            }
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 25px 0;
            display: block;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* font-size: 13px; */
        }

        .footer-link {
            color: white;
            text-decoration: none;
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s;
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            aspect-ratio: 16/9;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
        }

        .modal-close:hover {
            color: #fbbf24;
        }

        .modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Make play button clickable */
        .financing-overlay {
            cursor: pointer;
            transition: background 0.3s;
        }

        .financing-image-box button {
            opacity: 0;
        }

        .financing-play-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px auto 0;
            transition: all 0.3s;
        }

        .financing-play-btn::after {
            content: '▶';
            font-size: 24px;
            color: white;
            margin-left: 4px;
        }

        .financing-overlay:hover .financing-play-btn {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-grid,
            .financing-grid,
            .howto-grid,
            .solar-info-grid,
            .info-cards-grid,
            .testimonials-grid {
                display: block;
            }

            .publications-grid {
                grid-template-columns: 1fr;
            }

            .hero-banner h1 {
                font-size: 22px;
            }

            .registration-box h2 {
                font-size: 32px;
            }

            .section-title {
                font-size: 30px;
            }
            
            .howto-card h3,
            .section-title {
                margin-bottom: 5px;
            }

            .howto-video, .howto-list {
                margin-bottom: 0;
            }

            /* .container {
                padding: 0 10px;
            } */

            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                width: 100%;
            }

            .footer-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                align-items: center !important;
            }

            .hero-grid img,
            .info-card-image img,
            .solar-image-box img,
            .financing-image-box img {
                width: 100%;
                height: auto;
            }

            .registration-box {
                width: 100%;
                padding: 15px 10px;
            }

            .submit-btn {
                width: 100%;
                min-width: 0;
                max-width: none;
            }

            /* .hero-banner {
                display: none !important;
            } */

            .testimonial-video {
                margin: 15px 0;
            }
        }

        @media (max-width: 1200px) {
            .home-btn {
                font-size: 16px;
                padding: 13px 55px;
            }
        }

        @media (max-width: 480px) {
            /* .container {
                padding: 0 4px;
            } */
            body {
                font-size: 16px;
            }

            .hero-banner h1 {
                font-size: 20px;
                margin-bottom: 10px;
            }
            .registration-box h2 {
                font-size: 22px;
            }
            .section-title {
                font-size: 20px;
                margin-bottom: 0;
            }
            .info-card h3 {
                font-size: 20px;
                margin-bottom: 0;
            }
            .howto-card h3 {
                font-size: 20px;
                margin-bottom: 0;
            }
            .financing-overlay h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }
            .benefits-box h2 {
                font-size: 18px;
            }
            .publications-section .section-title {
                margin-bottom: 15px;
            }
            .publications-section h4 {
                font-size: 17px;
            }
            .publications-section .download-link {
                font-size: 16px;
            }
            .home-btn {
                font-size: 15px;
                padding: 11px 30px;
            }
        }

        @media (max-width: 992px) {
            /* .container {
                max-width: 98vw;
            } */
            .solar-image-box {
                height: 220px;
            }
            /* .financing-image-box {
                height: 180px;
            } */
            .info-card-image {
                height: 80px;
            }
        }
        @media (width < 1200px) and (width > 768px) {
            .hero-grid,
            .testimonials-section,
            .financing-section,
            .solar-info-section,
            .publications-section {
                padding-inline: 25px;
            }
            .hero-grid {
                gap: 0;
            }
        }
        

/* ===================================
   HAMBURGER MENU STYLES (NEW)
   =================================== */

.template-header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    /* position: absolute; */
    top: 6px;
    right: 20px;
    z-index: 1001;
}

.template-header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3086;
    margin: 1px 0;
    transition: 0.3s;
}

.template-header .hamburger.active span:nth-child(1) {
    transform: rotate(-48deg) translate(-7px, 7px);
}

.template-header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.template-header .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Close button for mobile menu */
.template-header .menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2d3086;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    position: static;
}

@media (max-width: 768px) {
    .template-header .hamburger {
        display: flex;
    }
    
    .template-header .header-content {
        position: relative;
    }
    
    .template-header nav {
        position: fixed;
        background-color: #fff;
        inset: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        z-index: 998;
    }
    
    .template-header nav.active {
        transform: translateX(0);
    }
    
    /* Add padding to menu items in mobile */
    .template-header nav a:not(.drawer-logo) {
        padding: 12px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #e9ecef;
        margin: 0;
    }

    .template-header .menu-close {
        display: block;
        color: #1d636d;
    }
    
    .template-header nav a.active {
        background: #3e406d21;
    }
    
    .template-header nav .lang-flags {
        padding: 15px 0;
    }
}

@media (max-width: 820px) {
    /* .container {
        padding: 0 15px;
    } */

    /* .hero-banner {
       display: none !important
    } */

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-content {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
}

@media (min-width: 821px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
