:root {
    --primary-color: #07411E;
    --primary-dark: #052E15;
    --primary-light: #0A5C2B;
    --secondary-color: #ABC41B;
    --secondary-dark: #8FA118;
    --secondary-light: #C4DE1F;
    --accent-color: #FFB100;
    --accent-dark: #E69D00;
    --accent-light: #FFC033;
    --text-color: #333333;
    --text-light: #666666;
    --light-text: #FFFFFF;
    --background-light: #F5F7F5;
    --background-alt: #E8ECE8;
    --shadow: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-large: 0 5px 15px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --dark-bg: #1A1A1A;
    --dark-nav: #2D2D2D;
    --dark-text: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: bold;
}

/* Styles pour le slider hero */
.hero-slider {
    position: static;
    width: 100%;
    height: calc(85vh - 30px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.7)
    );
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide.active::before {
    opacity: 1;
}

/* Animations du contenu des slides */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    top: 45%;
    transform: translateY(-50%);
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
}

.slide-content .cta-button {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.hero-slide.active .slide-content h1,
.hero-slide.active .slide-content p,
.hero-slide.active .slide-content .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Animations des contrôles */
.slider-controls {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.prev-slide i,
.next-slide i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.prev-slide:hover i {
    transform: translateX(-3px);
}

.next-slide:hover i {
    transform: translateX(3px);
}

/* Indicateurs avec animation */
.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.indicator.active::after {
    transform: scale(1);
}

.indicator:hover {
    transform: scale(1.2);
}

/* Animation de transition entre les slides */
@keyframes slideIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Classes pour les animations de transition */
.slide-entering {
    animation: slideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-exiting {
    animation: slideOut 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero-slider {
        height: calc(80vh - 70px);
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 20px;
    }
}

/* Ajustement pour les très petits écrans */
@media (max-height: 600px) {
    .hero {
        min-height: 75vh;
    }

    .hero-slider {
        height: calc(75vh - 60px);
    }
}

/* Styles pour les témoignages */
.testimonials-section {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(246, 243, 243, 0.896);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

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

.quote {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -1rem;
    left: -1rem;
}

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

.role {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Variables CSS */
:root {
    --primary-color: #07411E;
    --secondary-color: #ABC41B;
    --accent-color: #FFB100;
    --text-color: #333333;
    --background-light: #F5F7F5;
    --nav-height: 80px;
    --transition: all 0.3s ease;
}

/* Header et Navigation */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-transparent.scrolled {
    background: rgba(7, 65, 30, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav {
    height: 50px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 12px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-right: 2rem;
    height: 50px;
    margin-right: 2rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFD700 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 20px rgba(255, 177, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    overflow: hidden;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.logo-text:hover {
    transform: scale(1.05) translateY(-1px);
    background: linear-gradient(135deg, #FFD700 0%, #ffffff 50%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.logo-text:hover::before {
    left: 100%;
}

.logo-text:active {
    transform: scale(0.98) translateY(0);
    transition: all 0.1s ease;
}

.logo-text:hover {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFD700 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 25px rgba(255, 177, 0, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.2);
    display: block;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
}

.footer-logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: -1;
}

.footer-logo-text:hover {
    transform: scale(1.08) translateY(-2px);
    background: linear-gradient(135deg, #FFD700 0%, #ffffff 50%, #FFD700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 35px rgba(255, 215, 0, 0.6),
        0 5px 10px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.footer-logo-text:hover::before {
    left: 100%;
}

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

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: rgb(255, 253, 253);
    text-decoration: none;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.scrolled .nav-item a {
    color: var(--text-color);
}

.nav-item a:hover {
    color: var(--accent-color);
}

.nav-item a.active {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-color);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    display: block;
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--light-text);
}







@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - var(--nav-height));
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        color: var(--text-color);
        width: 100%;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        background: var(--background-light);
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
    }

    .nav-item:hover .dropdown-menu {
        max-height: 500px;
    }


}
/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */


.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #FFB100);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                4px 4px 8px rgba(0, 0, 0, 0.2);
    border-top: 0rem;
    text-decoration: #010804;
    margin-top: 7rem;
}

.hero h1:hover {
    background: linear-gradient(45deg, #FFB100, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 0.6rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-dark);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.cta-main {
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-sub {
    font-size: 0.7rem;
    opacity: 0.9;
}

.cta-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .cta-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-sub {
        display: none;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
    }
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(171, 196, 27, 0.1);
}

.feature-card:hover {
    border-color: var(--secondary-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Président */
.president-message {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.president-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.president-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.president-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.president-image {
    text-align: center;
}

.president-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.president-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.president-image img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

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

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0; }
}

.president-info h4 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: slideInUp 1s ease-out 0.5s both;
    opacity: 0;
}

.president-title {
    color: var(--text-light);
    font-size: 0.9rem;
    animation: slideInUp 1s ease-out 0.7s both;
    opacity: 0;
}

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

.president-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.president-text {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInScale 1s ease-out 0.3s both;
    opacity: 0;
    transform: scale(0.95);
}

.president-text:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.message-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    animation: slideInLeft 1s ease-out 0.8s both;
    opacity: 0;
    transform: translateX(-30px);
}

.message-header h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.quote-decoration i {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    animation: rotate 4s linear infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.message-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    animation: fadeInUp 1s ease-out both;
    opacity: 0;
    transform: translateY(20px);
}

.message-content p:nth-child(1) { animation-delay: 1s; }
.message-content p:nth-child(2) { animation-delay: 1.2s; }
.message-content p:nth-child(3) { animation-delay: 1.4s; }
.message-content p:nth-child(4) { animation-delay: 1.6s; }
.message-content p:nth-child(5) { animation-delay: 1.8s; }

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

.president-signature {
    margin-top: 2rem;
    text-align: right;
    animation: slideInRight 1s ease-out 2s both;
    opacity: 0;
    transform: translateX(30px);
    position: relative;
}

.president-signature::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    animation: expandLine 1s ease-out 2.5s forwards;
}

.signature-text {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    animation: typewriter 2s ease-out 2.2s both;
    overflow: hidden;
    white-space: nowrap;
}

.signature-title {
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 2.4s both;
    opacity: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 100px; }
}

@keyframes typewriter {
    from {
        width: 0;
        border-right: 2px solid var(--primary-color);
    }
    to {
        width: 100%;
        border-right: none;
    }
}

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

@media (max-width: 768px) {
    .president-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .president-image img {
        width: 150px;
        height: 150px;
    }
    
    .message-header h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    padding-top: 25px;
    padding-bottom: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.footer-section {
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 12px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 6px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

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

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

.footer-section.links ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 2px 0;
}

.footer-section.links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 177, 0, 0.4);
    color: #fff;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    flex: 1;
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background: var(--accent-color);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

.footer-bottom {
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
    text-decoration: none !important;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Styles du mode sombre */
body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.dark-mode .header-transparent.scrolled {
    background: rgba(5, 46, 21, 0.95);
}

body.dark-mode .nav-item a {
    color: var(--dark-text);
}

body.dark-mode .dropdown-menu {
    background: var(--dark-nav);
}

body.dark-mode .dropdown-menu li a {
    color: var(--dark-text);
}

body.dark-mode .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Styles pour l'animation des boutons */
.nav-buttons button {
    position: relative;
    overflow: hidden;
}

.nav-buttons button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.nav-buttons button:active::after {
    transform: scale(1);
}


/* Section Statistiques */
.impact-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px 0;
    color: white;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--light-text), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-header p {
    font-size: 1rem;
    color: #ccc;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-align: center;
}

.stat-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.stat-content h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #fff;
}

/* Style spécifique pour Communes Couvertes */
#communes-count-stat {
    font-size: 1.8rem !important;
}

#communes-count-stat + h3 {
    font-size: 0.8rem !important;
}

/* Style spécifique pour Secteurs d'Activité */
#secteurs-count-stat {
    font-size: 2.3rem !important;
}

#secteurs-count-stat + h3 {
    font-size: 0.92rem !important;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress .progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 1.5s ease-in-out;
}

/* Graphiques et statistiques détaillées */
.stats-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.chart-container, .demographics-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.chart-container h3, .demographics-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.chart-container canvas {
    max-height: 250px;
    width: 100% !important;
    height: auto !important;
}

.demographic-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demographic-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demographic-item .label {
    color: #ccc;
}

.progress-bar-container {
    position: relative;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12.5px;
    overflow: hidden;
}

.progress-bar-container .progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 12.5px;
    transition: width 1.5s ease-in-out;
}

.progress-bar-container .percentage {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
}

/* Responsive pour les statistiques */
@media (max-width: 768px) {
    .stats-header h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chart-container, .demographics-container {
        min-height: 250px;
        padding: 20px;
    }
}

/* Styles pour la section partenaires */
.hero-partners {
    position: relative;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(255,255,255,0.95) 0%, 
        rgba(255,255,255,0.5) 15%, 
        rgba(255,255,255,0.5) 85%, 
        rgba(255,255,255,0.95) 100%
    );
    pointer-events: none;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.partners-title {
    text-align: center;
    margin-bottom: 10px;
}

.partners-title span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding: 0 15px;
}

.partners-title span::before,
.partners-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.5;
}

.partners-title span::before {
    right: 100%;
}

.partners-title span::after {
    left: 100%;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.partner-logo {
    flex: 0 0 auto;
    width: 140px;
    height: 80px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 10px;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.3);
}

.partner-logo:active img {
    transform: scale(1.5);
    transition: transform 0.1s ease;
}

.partner-name {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-name {
    opacity: 1;
    transform: translateY(0);
}

/* Animation de défilement (optionnel) */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-partners {
        padding: 20px 0;
    }

    .partners-track {
        gap: 30px;
    }

    .partner-logo {
        width: 120px;
        height: 70px;
    }

    .partners-title span {
        font-size: 0.8rem;
    }
}

/* Version avec défilement automatique (optionnel) */
.partners-track.animate {
    animation: scroll 30s linear infinite;
    display: flex;
    width: fit-content;
}

.partners-track.animate .partner-logo {
    flex: 0 0 120px;
}

/* Section Actualités */
.latest-news {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.news-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

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

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

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

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.news-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary-dark);
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-header h2 {
        font-size: 2rem;
    }

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

    .news-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Animation au chargement */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ajouter ces styles pour le nouveau bouton CTA */
.cta-wrapper {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    gap: 0.6rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-dark);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.cta-main {
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-sub {
    font-size: 0.7rem;
    opacity: 0.9;
}

.cta-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .cta-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-sub {
        display: none;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
    }
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-header i {
    margin-right: 10px;
    color: var(--accent-color);
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#keurMassarMap {
    height: 500px;
    width: 100%;
    min-height: 500px;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info {
    padding: 20px;
}

.communes-list h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.communes-list ul {
    list-style: none;
    padding: 0;
}

.communes-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: var(--bg-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.communes-list li:before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
}

.communes-list li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .map-content {
        grid-template-columns: 1fr;
    }
    
    #keurMassarMap {
        height: 400px;
    }
}

/* ===== ANIMATIONS SUPPLÉMENTAIRES POUR LA SECTION PRÉSIDENT ===== */

/* Animation pour les guillemets au survol */
.president-text:hover .fa-quote-left {
    animation: wiggle 0.5s ease-in-out;
}

.president-text:hover .fa-quote-right {
    animation: wiggle 0.5s ease-in-out 0.1s;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Effet de particules flottantes */
.president-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float-particles 20s linear infinite;
    pointer-events: none;
}

@keyframes float-particles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

/* Animation de l'image du président avec effet de pulsation */
.president-image {
    position: relative;
}

.president-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 420px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ripple 3s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Animation du texte au survol avec effet de surlignage */
.message-content p {
    position: relative;
    transition: all 0.3s ease;
}

.message-content p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: width 0.3s ease;
}

.message-content p:hover::before {
    width: calc(100% + 20px);
}

/* Animation de la signature avec effet de soulignement */
.president-signature::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.5s ease;
}

.president-signature:hover::after {
    width: 100%;
}

/* Animation du titre avec effet de brillance */
.message-header h2 {
    position: relative;
    overflow: hidden;
}

.message-header h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.message-header h2:hover::before {
    left: 100%;
}

/* Animation responsive pour mobile */
@media (max-width: 768px) {
    .president-image::after {
        width: 270px;
        height: 270px;
    }
    
    .president-message::after {
        background-size: 50px 50px, 75px 75px, 100px 100px;
    }
    
    .message-content p::before {
        left: -5px;
    }
    
    .message-content p:hover::before {
        width: calc(100% + 10px);
    }
}

/* Animation d'entrée pour la section complète */
.president-message {
    animation: sectionEntrance 1.5s ease-out;
}

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

/* ===== SECTION ENREGISTREMENT ===== */

.registration-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 65, 30, 0.9) 0%, rgba(10, 92, 43, 0.8) 50%, rgba(171, 196, 27, 0.9) 100%);
    opacity: 0.95;
}

.registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.registration-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.registration-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: slideInDown 1s ease-out;
}

.registration-header h2 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.registration-header p {
    font-size: 1rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.registration-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(171, 196, 27, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInScale 0.8s ease-out both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    border-color: var(--secondary-color);
}

.info-card:hover .info-icon {
    transform: scale(1.2);
    box-shadow: 0 10px 30px rgba(171, 196, 27, 0.6);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 15px rgba(171, 196, 27, 0.3);
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.info-card p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.info-card ul li i {
    color: var(--secondary-color);
    margin-right: 0.6rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.info-card:hover ul li i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.registration-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(171, 196, 27, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out 0.5s both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.form-header h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.form-header p {
    color: var(--text-light);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(171, 196, 27, 0.1);
    outline: none;
    transform: translateY(-2px);
}
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    border: 2px solid var(--secondary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(171, 196, 27, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(171, 196, 27, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.registration-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.registration-stats .stat-item {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out both;
}

.registration-stats .stat-item:nth-child(1) { animation-delay: 0.6s; }
.registration-stats .stat-item:nth-child(2) { animation-delay: 0.7s; }
.registration-stats .stat-item:nth-child(3) { animation-delay: 0.8s; }
.registration-stats .stat-item:nth-child(4) { animation-delay: 0.9s; }

.registration-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.registration-stats .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Animations supplémentaires */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .registration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .registration-info {
        grid-template-columns: 1fr;
    }
    
    .registration-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .registration-header h2 {
        font-size: 1.6rem;
    }
    
    .registration-form-container {
        padding: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .registration-container {
        padding: 0 1rem;
    }
    
    .registration-form-container {
        padding: 1.5rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Public site dark theme (when member connected and theme=dark) */
.site-dark body, .site-dark {
  background: #0f172a;
}
.site-dark .header-transparent,
.site-dark .header-transparent.scrolled {
  background: rgba(15,23,42,0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-dark .nav-links a, .site-dark .nav-buttons .login-btn { color: #e5e7eb; }
.site-dark .nav-buttons .login-btn { border-color: rgba(255,255,255,0.15); }
.site-dark .nav-buttons .login-btn:hover { background: rgba(255,255,255,0.08); }
/* General text & links */
.site-dark, .site-dark p, .site-dark li, .site-dark h1, .site-dark h2, .site-dark h3, .site-dark h4, .site-dark h5 {
  color: #e5e7eb;
}
.site-dark a { color: #93c5fd; }
.site-dark a:hover { color: #bfdbfe; }
/* Common card/section containers */
.site-dark .info-card,
.site-dark .association-card,
.site-dark .gie-card,
.site-dark .stat-card,
.site-dark .chart-container,
.site-dark .demographics-container,
.site-dark .map-info-card,
.site-dark .partner-logo,
.site-dark .newsletter,
.site-dark .cta-button,
.site-dark .section,
.site-dark .table-container {
  background: rgba(17,24,39,0.9);
  border: 1px solid #334155;
  color: #e5e7eb;
}
.site-dark .cta-button { border-color: #334155; }
/* Dropdowns/menus */
.site-dark .dropdown-menu {
  background: #0b1220;
  border: 1px solid #334155;
}
.site-dark .dropdown-menu li a { color: #e5e7eb; }
.site-dark .dropdown-menu li a:hover { background: rgba(255,255,255,0.06); }
/* Inputs */
.site-dark input, .site-dark select, .site-dark textarea {
  background: #0b1220;
  color: #e5e7eb;
  border: 1px solid #334155;
}
.site-dark input::placeholder, .site-dark textarea::placeholder { color: #94a3b8; }
/* Footer */
.site-dark footer, .site-dark .footer-bottom { background: #0b1220; color: #cbd5e1; }
.site-dark .footer-bottom a { color: #93c5fd; }
/* Buttons/secondary actions */
.site-dark .action-btn, .site-dark .map-btn { background: rgba(255,255,255,0.06); color: #e5e7eb; border: 1px solid #334155; }
.site-dark .action-btn:hover, .site-dark .map-btn:hover { background: rgba(255,255,255,0.12); }

/* Styles pour les messages de confirmation d'enregistrement */
.registration-message {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    animation: slideInDown 0.3s ease;
}

.registration-message.success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #34d399;
}

.registration-message.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 1px solid #f87171;
}

.registration-message .message-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: white;
    gap: 12px;
}

.registration-message .message-content i {
    font-size: 20px;
    flex-shrink: 0;
}

.registration-message .message-content span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.registration-message .message-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.registration-message .message-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.registration-message .message-close i {
    font-size: 14px;
}

/* Animation pour l'apparition des messages */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amélioration du formulaire d'enregistrement */
.registration-form-container {
    position: relative;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form .submit-btn {
    position: relative;
    overflow: hidden;
}

.registration-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.registration-form .submit-btn:hover::before {
    left: 100%;
}

/* Responsive pour les messages */
@media (max-width: 768px) {
    .registration-message .message-content {
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .registration-message .message-content span {
        font-size: 14px;
    }
    
    .registration-message .message-close {
        align-self: flex-end;
        margin-top: -8px;
    }
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
}



/* Footer Admin Button */
.footer-bottom-links .admin-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.footer-bottom-links .admin-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.footer-bottom-links .admin-login-btn i {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-bottom-links .admin-login-btn:hover i {
    color: var(--primary-color);
}

/* Responsive pour le bouton admin footer */
@media (max-width: 768px) {
    .footer-bottom-links .admin-login-btn {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom-links .admin-login-btn span {
        display: none;
    }
    
    .footer-bottom-links .admin-login-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links .admin-login-btn {
        padding: 0.2rem 0.5rem;
        border-radius: 12px;
        margin-left: 0.3rem;
    }
}

/* Styles unifiés pour les boutons d'authentification - même design que la page d'accueil */
.nav-buttons .site-space-link,
.nav-buttons a[data-siteauth-logout],
.nav-buttons .member-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-buttons .site-space-link:hover,
.nav-buttons a[data-siteauth-logout]:hover,
.nav-buttons .member-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

.nav-buttons .site-space-link i,
.nav-buttons a[data-siteauth-logout] i,
.nav-buttons .member-btn i {
    font-size: 1rem;
}

.nav-buttons .site-space-link span,
.nav-buttons a[data-siteauth-logout] span,
.nav-buttons .member-btn span {
    white-space: nowrap;
    display: inline;
}

/* Styles pour l'état scrolled */
.scrolled .nav-buttons .site-space-link,
.scrolled .nav-buttons a[data-siteauth-logout],
.scrolled .nav-buttons .member-btn {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.scrolled .nav-buttons .site-space-link:hover,
.scrolled .nav-buttons a[data-siteauth-logout]:hover,
.scrolled .nav-buttons .member-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Styles pour le conteneur des boutons d'authentification */
.nav-buttons [data-siteauth-ui] {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

/* Responsive pour les boutons d'authentification */
@media (max-width: 768px) {
    .nav-buttons .site-space-link,
    .nav-buttons a[data-siteauth-logout],
    .nav-buttons .member-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .nav-buttons .site-space-link span,
    .nav-buttons a[data-siteauth-logout] span,
    .nav-buttons .member-btn span {
        display: none;
    }
    
    .nav-buttons .site-space-link i,
    .nav-buttons a[data-siteauth-logout] i,
    .nav-buttons .member-btn i {
        font-size: 1.1rem;
    }
    
    .nav-buttons [data-siteauth-ui] {
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .nav-buttons .site-space-link,
    .nav-buttons a[data-siteauth-logout],
    .nav-buttons .member-btn {
        padding: 0.3rem 0.6rem;
        border-radius: 18px;
    }
    
    .nav-buttons [data-siteauth-ui] {
        gap: 0.3rem;
    }
}

.logo-svg {
    height: 100%;
    width: auto;
    max-height: 50px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 177, 0, 0.3));
}

.footer-logo {
    height: auto;
    width: 160px;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-bottom: 1rem;
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(255, 177, 0, 0.4));
}

.footer-logo-svg {
    height: auto;
    width: 160px;
    max-width: 100%;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-bottom: 1rem;
}

.footer-logo-svg:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(255, 177, 0, 0.4));
}

/* Bouton "Aller vers le haut" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 177, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 177, 0, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Améliorations du footer */
.footer-section.links ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding-left: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section.links ul li a:hover {
    background: rgba(255, 177, 0, 0.1);
    transform: translateX(5px);
    color: var(--accent-color);
}

.footer-section.links ul li a i {
    width: 16px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-section.links ul li a:hover i {
    transform: scale(1.2);
}

/* Améliorations de la section contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 177, 0, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 1px;
    width: 16px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    display: block;
    font-size: 0.8rem;
    color: white;
    margin-bottom: 1px;
}

.contact-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Améliorations des réseaux sociaux */
.social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0ea5e9);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}



/* Améliorations de la newsletter */
.newsletter h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.newsletter p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
    background: white;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-group button {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 177, 0, 0.4);
}

.social-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.social-btn:hover i {
    transform: scale(1.2);
}