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

        :root {
            --primary-blue: #1E3A8A;
            --secondary-blue: #1E40AF;
            --light-blue: #3B82F6;
            --yellow: #FFD700;
            --orange: #FFA500;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--white);
            background: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* Navigation - Responsive */
        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-blue);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        #navbar.scrolled {
            background: rgba(30, 58, 138, 0.98);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1);  }
            50% { transform: scale(1.05);  }
        }

        .logo-text h1 {
            font-size: clamp(20px, 3vw, 24px);
            color: var(--white);
            margin: 0;
        }

        .logo-text p {
            font-size: clamp(10px, 2vw, 12px);
            color: var(--yellow);
            margin: 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: clamp(15px, 3vw, 30px);
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--yellow);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: -1;
            border-radius: 8px;
        }

        .nav-menu a:hover::before,
        .nav-menu a.active::before {
            transform: scaleX(1);
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

       
        /* --- STRUCTURE PRINCIPALE --- */
        .hero-split {
            position: relative;
            width: 100%;
            min-height: 650px;
            height: calc(100vh - 80px);
            max-height: 800px;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            background: #050b18;
        }

        /* --- PARTIE GAUCHE (TEXTE) --- */
        .hero-left {
            flex: 0 0 65%; 
            background: linear-gradient(
                to right,
                #050b18 0%,
                #1e3a8a 70%,
                rgba(30, 58, 138, 0.8) 85%,
                transparent 100%
            );
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        /* --- PARTIE DROITE (IMAGES 100%) --- */
        .hero-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-image-container {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1s ease-in-out, transform 8s ease-out;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 1;
            transform: scale(1);
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right center;
        }

        /* --- TEXTES & ANIMATIONS (TES VERSIONS) --- */
        .hero-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 40px;
            margin-top: 55px;
            opacity: 0;
            transform: translateX(-100px) rotate(-5deg);
            animation: dynamicSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
        }

        .hero-logo img {
            width: 90px;
            height: auto;
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
        }

        .hero-title-inline h1 {
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            color: white;
            line-height: 1.2;
        }

        .hero-title-inline .brand {
            font-weight: 700;
            color: #FFD700;
            text-transform: uppercase;
            font-size: clamp(1.6rem, 3.5vw, 2.6rem);
        }

        .hero-subtitle {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
        }

        .hero-subtitle h2 {
            font-size: clamp(1.4rem, 2.8vw, 2rem);
            font-weight: 300;
            color: white;
        }

        .hero-subtitle .highlight {
            display: block;
            font-weight: 600;
            color: #FFD700;
        }

        .hero-description {
            margin-bottom: 35px;
            opacity: 0;
            transform: translateX(-80px);
            animation: slideInBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
        }

        .hero-description p {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.7;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
        }

        .hero-btn {
            padding: 14px 35px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.4s;
            cursor: pointer;
        }

        .btn-primary {
            background: #FFD700;
            color: #1e3a8a;
            animation: pulse 2s infinite;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(5px);
        }

        .btn-secondary2 {
            background: #1e3a8a;;
            color: rgb(255, 255, 255);
            backdrop-filter: blur(5px);
        }

        .hero-indicators {
            position: absolute;
            bottom: 30px;
            right: 40px;
            z-index: 20;
            display: flex;
            gap: 8px;
        }

        .indicator-dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
        }

        .indicator-dot.active {
            background: #FFD700;
            transform: scale(1.4);
        }

        /* --- TES ANIMATIONS KEYFRAMES --- */
        @keyframes dynamicSlideIn {
            0% { opacity: 0; transform: translateX(-100px) rotate(-5deg); }
            100% { opacity: 1; transform: translateX(0) rotate(0deg); }
        }
        @keyframes bounceIn {
            0% { opacity: 0; transform: translateY(50px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes slideInBounce {
            0% { opacity: 0; transform: translateX(-80px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes popIn {
            0% { opacity: 0; transform: translateY(30px) scale(0.8); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); }
        }

        /* ==========================================
           MODIFICATIONS RESPONSIVE MOBILE
           ========================================== */
        @media (max-width: 768px) {
            .hero-split {
                height: 90vh; /* Hauteur généreuse sur mobile pour l'effet Hero */
                min-height: 550px;
            }

            .hero-left {
                flex: 0 0 100%;
                padding: 40px 25px;
                /* Dégradé vertical pour fusionner avec l'image du dessous */
                background: linear-gradient(
                    to bottom,
                    rgba(5, 11, 24, 0.95) 0%,
                    rgba(30, 58, 138, 0.8) 50%,
                    rgba(30, 58, 138, 0.4) 100%
                );
                justify-content: flex-start; /* Aligne le texte vers le haut */
                padding-top: 80px;
            }

            /* --- AJUSTEMENT DES POLICES MOBILE --- */
            .hero-header {
                gap: 15px;
                margin-bottom: 25px;
            }

            .hero-logo img {
                width: 60px; /* Logo plus petit */
            }

            .hero-title-inline h1 {
                font-size: 1.0rem; /* Réduction du titre */
            }

            .hero-title-inline .brand {
                font-size: 1.4rem; /* Nom de marque plus compact */
            }

            .hero-subtitle h2 {
                font-size: 1.3rem;
                line-height: 1.3;
            }

            .hero-description p {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .hero-buttons {
                flex-direction: column; /* Boutons l'un sur l'autre */
                gap: 12px;
                width: 100%;
            }

            .hero-btn {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }

            .hero-indicators {
                bottom: 20px;
                right: 50%;
                transform: translateX(50%); /* Centré en bas sur mobile */
            }

            .hero-slide img {
                object-position: center; /* Image centrée pour mobile */
            }
        }

        @media (max-width: 480px) {
            .hero-left {
                padding-top: 60px;
            }
            .hero-title-inline .brand {
                font-size: 1.4rem;
            }
        }

        /* Services avec images réelles */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
            padding: 10px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.7s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card:hover {
            border-color: var(--yellow);
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        }

        .service-image {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 5px solid var(--yellow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            position: relative;
        }

        .service-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.2));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover .service-image::after {
            opacity: 1;
        }

        .service-card:hover .service-image {
            transform: rotate(5deg) scale(1.1);
            border-color: var(--orange);
        }

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

        .service-card:hover .service-image img {
            transform: scale(1.15);
        }

        .service-card h3 {
            font-size: 1.18rem;
            color: var(--primary-blue);
            margin-bottom: 0px;
            text-align: center;
            transition: color 0.3s;
        }

        .service-card:hover h3 {
            color: var(--orange);
        }

        .service-card p {
            color: #4B5563;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 10px 0;
            color: #6B7280;
            font-size: 0.95rem;
            position: relative;
            padding-left: 25px;
            transition: all 0.3s;
        }

        .service-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: bold;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .service-card:hover .service-features li::before {
            transform: scale(1.3) rotate(360deg);
        }

        /* Témoignages avec images */
        .testimonials {
            background: rgba(30, 64, 175, 0.2);
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 3vw, 3.5rem);
            color: var(--primary-blue);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 5px;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, var(--yellow), var(--orange));
            border-radius: 3px;
            animation: expand 1s ease-out;
        }

        @keyframes expand {
            from { width: 0; }
            to { width: 120px; }
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.7s;
        }

        .testimonial-card:hover::before {
            top: 100%;
            left: 100%;
        }

        .testimonial-card:hover {
            border-color: var(--yellow);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .testimonial-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 4px solid var(--yellow);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
        }

        .testimonial-card:hover .testimonial-image {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--orange);
        }

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

        .stars {
            color: var(--yellow);
            font-size: 1.5rem;
            margin-bottom: 15px;
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: var(--primary-blue);
        }

        .testimonial-author {
            color: #475b81;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background: var(--primary-blue);
            padding: 60px 0 20px;
            border-top: 4px solid var(--yellow);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3, .footer-section h4 {
            color: var(--yellow);
            margin-bottom: 20px;
            animation: glow 2s infinite;
        }

        @keyframes glow {
            0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
            50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-section a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--yellow);
            transition: width 0.3s;
        }

        .footer-section a:hover::after {
            width: 100%;
        }

        .footer-section a:hover {
            color: var(--yellow);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            font-size: 1.8rem;
        }

        .social-links a {
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            transform: translateY(-5px) rotate(10deg) scale(1.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-menu a {
                padding: 8px 15px;
                font-size: 0.95rem;
            }
            
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background: var(--primary-blue);
                padding: 100px 30px 30px;
                gap: 20px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
                right: 0;
            }

            .nav-menu a {
                text-align: left;
                padding: 15px 20px;
                width: 100%;
                border-radius: 10px;
                font-size: 1.1rem;
            }

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

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 18px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .service-image {
                width: 180px;
                height: 180px;
            }

            .section-title {font-size: 1.5rem;}
            .service-features li {font-size: 0.8rem;}
        }


        .testimonial-author {
            color: #6B7280;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .testimonial-author {
            color: #6B7280;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Pourquoi choisir Créaqad - Version simple */
.why-choose {
    padding: 10px 0;
    background: linear-gradient(135deg, rgba(238, 224, 224, 0.1), rgba(255, 255, 255, 0.05));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 20px;
    padding: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    border-color: var(--yellow);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.why-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.why-card:hover h3 {
    color: var(--orange);
}

.why-card p {
    color: #4B5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card h3 {font-size: 1.0rem;}
    .why-card p {font-size: 0.8rem;}
}

@media (max-width: 480px) {
    .why-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .why-card {
        padding: 30px 20px;
    }

    .why-card h3 {font-size: 1.0rem;}
    .why-card p {font-size: 0.8rem;}
}

/* ================= COOKIE BANNER ================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: #111827;
    color: #ffffff;
    padding: 16px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
}

.cookie-consent p {
    margin: 0;
    max-width: 70%;
    font-size: 0.85rem;
}

.cookie-consent a {
    color: #facc15;
    text-decoration: none;
}

.cookie-actions button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

#accept-cookies {
    background: #22c55e;
    color: white;
}

#refuse-cookies {
    background: #ef4444;
    color: white;
}

/* ===== MODAL BACKGROUND ===== */
.modal {
    display: none; /* caché par défaut */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* scroll si contenu long */
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

/* ===== MODAL CONTENT ===== */
.modal-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 80%;
    overflow-y: auto; /* scroll vertical */
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== CLOSE BUTTON ===== */
.close {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #facc15;
}

/* ===== BODY MODAL ===== */
.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #475b81;
    font-size: 0.8rem;
}

.modal-content h2 {
    color: #facc15;
    font-size: 1.0rem;
}


