/* Extracted styles for index */

:root {
            --color-primary: #1e3a5f;
            --color-primary-dark: #0f1e36;
            --color-accent: #c8102e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Crimson Pro', serif;
            line-height: 1.6;
            color: #333;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 600;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 500;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e5e7eb;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 100px;
            height: 90px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }
        
        

/*        .logo-icon2 {
            font-size: 32px;
            background: var(--color-primary);
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
*/
        .logo-icon2 {
            width: 100px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            overflow: hidden; 
            background: transparent;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            animation: pulse 5s infinite;
        }


        .logo-icon2 img {
            width: 100%;
            height: 100%;
            object-fit: contain; 
        }

        .logo-icon1 {
            width: 100px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            overflow: hidden; 
            background: transparent;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            animation: pulse 5s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .logo-icon1 img {
            width: 150%;
            height: 150%;
            object-fit: contain; 
        }

        .logo-text-main1 {
            font-size: 1rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 70px;
        }

        .logo-text-main2 {
            font-size: 0.875rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 20px;
        }

        .logo-text-main3 {
            font-size: 0.7rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 0px;
        }

        .logo-text-sub {
            font-size: 0.75rem;
            color: #6b7280;
            margin-left: 90px;
        }

        .nav-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-desktop a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-desktop a:hover {
            color: var(--color-primary);
            transform: scale(1.15);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            color: #6b7280;
        }

        .nav-mobile {
            display: none;
            padding: 1.5rem;
            border-top: 1px solid #e5e7eb;
        }

        .nav-mobile.active {
            display: block;
        }

        .nav-mobile a {
            display: block;
            padding: 0.75rem 0;
            color: var(--color-primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-mobile a:hover {
            color: var(--color-primary);
            transform: scale(1.02);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

       .hero3 {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero2 {
            position: relative;
            min-height: 40vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }


        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: heroFade 40s infinite;
        }

        /* Décalage temporel */
        .slide1  { animation-delay: 0s; }
        .slide2  { animation-delay: 4s; }
        .slide3  { animation-delay: 8s; }
        .slide4  { animation-delay: 12s; }
        .slide5  { animation-delay: 16s; }
        .slide6  { animation-delay: 20s; }
        .slide7  { animation-delay: 24s; }
        .slide8  { animation-delay: 28s; }
        .slide9  { animation-delay: 32s; }
        .slide10 { animation-delay: 36s; }
        .slide11 { animation-delay: 40s; }


        @keyframes heroFade {
            0%   { opacity: 1; }
            5%   { opacity: 1; }
            30%  { opacity: 1; }
            35%  { opacity: 0; }
            100% { opacity: 0; }
        } 


        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    120deg,
                    rgba(15, 30, 54, 0.55) 0%,
                    rgba(30, 58, 95, 0.40) 45%,
                    rgba(30, 58, 95, 0.20) 100%
                ),
                linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.25),
                    rgba(0, 0, 0, 0.05)
                );
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 1.5rem;
        }

        .hero-badge {
            display: inline-block;
            margin-bottom: 1.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.05em;
            font-size: 0.875rem;
        }

        .hero h1 {
            color: white;
            margin-bottom: 1.5rem;
            max-width: 48rem;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 42rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Crimson Pro', serif;
        }

        .btn-primary {
            background: var(--color-accent);
            color: white;
        }

        .btn-primary:hover {
            background: rgba(200, 16, 46, 0.9);
            box-shadow: 0 10px 15px -3px rgba(200, 16, 46, 0.25);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            color: rgba(255, 255, 255, 0.7);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        /* Section Styles */
        .section {
            padding: 6rem 1.5rem;
        }

        .section-bg-gray {
            background: #f9fafb;
        }

        .section-bg-white {
            background: white;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0.5rem 1rem;
            background: rgba(30, 58, 95, 0.1);
            border-radius: 9999px;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-size: 0.875rem;
        }

        .section-badge-accent {
            background: rgba(200, 16, 46, 0.1);
            color: var(--color-accent);
        }

        .section-header h2 {
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: #6b7280;
            font-size: 1.125rem;
            max-width: 42rem;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: rgba(30, 58, 95, 0.3);
            box-shadow: 0 20px 25px -5px rgba(30, 58, 95, 0.05);
            transform: translateY(-2px);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: rgba(30, 58, 95, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
            color: var(--color-primary);
            font-size: 1.75rem;
        }

        .service-card:hover .service-icon {
            background: var(--color-primary);
            transform: scale(1.1);
            color: white;
        }

        .service-card h3 {
            color: var(--color-primary);
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: #6b7280;
        }

        .cta-box {
            margin-top: 4rem;
            padding: 2rem;
            background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
            border-radius: 1rem;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-box h3 {
            color: white;
            margin-bottom: 0.5rem;
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.8);
        }

        .btn-white {
            background: white;
            color: var(--color-primary);
            white-space: nowrap;
        }

        .btn-white:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        /* News Grid */

        /*
        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        */

        
        .news-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;          
            padding-bottom: 1rem;      
            scroll-snap-type: x proximity; 
        }

        .news-grid > * {
            flex: 0 0 320px;           
            scroll-snap-align: start;  
        }
        

        .news-card {
            background: #f9fafb;
            border-radius: 0.75rem;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
            text-decoration: none;
        }

        .news-card:hover {
            border-color: rgba(200, 16, 46, 0.3);
            box-shadow: 0 20px 25px -5px rgba(200, 16, 46, 0.05);
            transform: translateY(-2px);
        }

        .news-image {
            position: relative;
            height: 224px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.25rem 0.75rem;
            background: var(--color-accent);
            color: white;
            border-radius: 9999px;
            font-size: 0.875rem;
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-date {
            display: flex;
            align-items: center;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .news-date::before {
            content: "📅";
            margin-right: 0.5rem;
        }

        .news-card h3 {
            color: var(--color-primary);
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .news-card:hover h3 {
            color: var(--color-accent);
        }

        .news-card p {
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--color-accent);
            text-decoration: none;
            transition: color 0.3s;
        }

        .read-more:hover {
            color: rgba(200, 16, 46, 0.8);
        }

        .read-more::after {
            content: "→";
            margin-left: 0.5rem;
            transition: transform 0.3s;
        }

        .read-more:hover::after {
            transform: translateX(4px);
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .mission-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .mission-dot {
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
            margin-top: 8px;
            flex-shrink: 0;
        }

        .mission-item h4 {
            color: var(--color-primary);
            margin-bottom: 0.25rem;
        }

        .mission-item p {
            color: #6b7280;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .value-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .value-card:hover {
            border-color: rgba(30, 58, 95, 0.3);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .value-icon {
            width: 48px;
            height: 48px;
            background: rgba(30, 58, 95, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--color-primary);
            font-size: 1.5rem;
        }

        .value-card h4 {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .value-card p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .stats-box {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.05), rgba(200, 16, 46, 0.05));
            border-radius: 0.75rem;
            border: 1px solid rgba(30, 58, 95, 0.2);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            text-align: center;
        }

        .stat-value {
            font-size: 2rem;
            color: var(--color-primary);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.875rem;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-card {
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .contact-card:hover {
            border-color: rgba(30, 58, 95, 0.3);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(30, 58, 95, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--color-primary);
            font-size: 1.5rem;
        }

        .contact-card h4 {
            color: var(--color-primary);
            margin-bottom: 0.75rem;
        }

        .contact-card p {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .map-container {
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            height: 256px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-form {
            background: #f9fafb;
            border-radius: 0.75rem;
            border: 1px solid #e5e7eb;
            padding: 2rem;
        }

        .contact-form h3 {
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #6b7280;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-family: 'Crimson Pro', serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
        }

        .form-group textarea {
            resize: none;
        }

        .btn-submit {
            width: 100%;
        }

        .form-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 0.5rem;
            display: none;
        }

        .form-status.success {
            background: #10b981;
            color: white;
            display: block;
        }

        .form-status.error {
            background: #ef4444;
            color: white;
            display: block;
        }

        /* Ambassador Message Section */
        .ambassador-section {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.03), rgba(200, 16, 46, 0.03));
        }

        .ambassador-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .ambassador-message-grid {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 4rem;
            align-items: start;
        }

        .officials-photos {
            position: sticky;
            top: 100px;
        }

        .official-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
            transition: transform 0.3s;
        }

        .official-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .official-photo {
            width: 100%;
            height: 340px;
            object-fit: contain;
            object-position: center;
            background: radial-gradient(circle, #fafafa, #eaeaea);
        }

        .official-info {
            padding: 1.5rem;
            text-align: center;
            background: linear-gradient(to bottom, white, #f9fafb);
        }

        .official-title {
            color: var(--color-primary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .official-name {
            color: var(--color-primary-dark);
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .official-subtitle {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .ambassador-message {
            background: white;
            padding: 3rem;
            border-radius: 1rem;
            border-left: 4px solid var(--color-accent);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .ambassador-message h2 {
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .message-intro {
            font-size: 1.25rem;
            color: var(--color-primary);
            font-style: italic;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--color-accent);
        }

        .message-content {
            color: #4b5563;
            font-size: 1.125rem;
            line-height: 1.8;
        }

        .message-content p {
            margin-bottom: 1.5rem;
        }

        .message-signature {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e5e7eb;
            text-align: right;
        }

        .signature-name {
            color: var(--color-primary);
            font-size: 1.125rem;
            margin-bottom: 0.25rem;
        }

        .signature-title {
            color: #6b7280;
            font-size: 0.875rem;
            font-style: italic;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--color-accent);
            opacity: 0.2;
            line-height: 1;
        }

        /* Footer */
        
        .footer {
            background: var(--color-primary-dark);
            color: white;
            padding: 4rem 1.5rem;
        }
        
/*
        .footer {
             position: relative;
            background: linear-gradient(
                rgba(0, 0, 0, 0.85),
                rgba(0, 0, 0, 0.55)
                ), url("../img/banniere.jpg");
            background-size: cover;
            background-position: center;
            color: white;
            }
*/

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .footer-brand-text-main {
            letter-spacing: 0.05em;
            font-size: 0.875rem;
        }

        .footer-brand-text-sub {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid,
            .contact-grid,
            .ambassador-grid {
                grid-template-columns: 1fr;
            }

            .officials-photos {
                position: relative;
                top: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }

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

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

        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .services-grid,
            .news-grid {
                grid-template-columns: 1fr;
            }

            .contact-info-grid,
            .form-row {
                grid-template-columns: 1fr;
            }

            .officials-photos {
                grid-template-columns: 1fr;
            }

            .ambassador-message {
                padding: 1.5rem;
            }

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

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

            .cta-box {
                flex-direction: column;
                text-align: center;
            }

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

        @media (max-width: 640px) {
            h1 {
                font-size: 2rem;
            }

            .section {
                padding: 4rem 1rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                height: 64px;
                padding: 0 1rem;
            }
       
        .logo-text-main1 {
            font-size: 0.85rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 45px;
        }

        .logo-text-main2 {
            font-size: 0.75rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 4px;
        }

        .logo-text-main3 {
            font-size: 0.55rem;
            color: var(--color-primary);
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-left: 0px;
        }

        .logo-text-sub {
            font-size: 0.5rem;
            color: #6b7280;
            margin-left: 70px;
        }

        .logo-icon1 {
            width: 38px;
            height: 38px;
        }

        .logo-icon2 {
            width: 42px;
            height: 42px;
        }
    }