 /* ===== PALETTE ROUGE AMÉLIORÉE ===== */
        :root {
            --primary-red: #c00000;
            --secondary-red: #e53935;
            --dark-red: #8b0000;
            --light-red: #ffebee;
            --accent-yellow: #FFD151;
            --text-dark: #333;
            --text-medium: #666;
            --text-light: #888;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-radius: 12px;
            --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }

        /* ===== BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: white;
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            gap: 10px;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .primary-button {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border: none;
            font-size: 1rem;
        }

        .primary-button:hover {
            background-color: var(--dark-red);
            transform: translateY(-3px);
        }

        .secondary-button {
            background-color: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
        }

        .secondary-button:hover {
            background-color: var(--primary-red);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 15px 0;
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: rgb(209, 15, 15);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            transition: all 0.4s ease;
        }

        .nav-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: var(--transition);
        }

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

        .nav-item a:hover::after {
            width: 100%;
        }

        .cta-button {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
        }

.cta-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
}
.menu-toggle {
  display: none;
  font-size: 2.5rem;
  color: var(--primary-red);
  cursor: pointer;
  margin-left: auto;
  border: none;
  background-color: var(--white);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item a {
    padding: 10px 0;
  }






}
.cgu-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  
  
}
.cgu-section h1 {
  color: var(--primary-red);
    font-size: 2.5rem;
 margin-top: 40px;
    text-align: center;
}
.cgu-section ol {
  padding-left: 20px;
    margin-top: 20px;
    color: var(--text-dark);
    font-size: 1.1rem;
}
.cgu-section li {
  margin-bottom: 20px;
}
.cgu-section strong {
  color: var(--dark-red);
}

 .guide-section {
     padding: 20px;
     background: #fff;
     margin-top: 80px;
     text-align: center;
     

   }
   .guide-section iframe {
     border: none;
   }

        /* ===== HERO SECTION ===== */
        .hero-section {
            padding: 150px 0 100px;
            background: linear-gradient(to bottom, var(--light-red) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            color: var(--primary-red);
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--text-medium);
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(220, 25, 25, 0.2);
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-medium);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 2rem;
        }

        /* Styles spécifiques pour le carrousel hero */
        .hero-carousel {
            position: relative;
            width: 50%;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-track {
            display: flex;
            width: 400%;
            height: auto;
            animation: slide 30s linear infinite;
        }
        
        .carousel-slide {
            width: 25%;
            flex-shrink: 0;
            transition: opacity 0.5s ease;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 90vh;
            display: block;
            border-radius: 20px;
            object-fit: cover;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            15% { transform: translateX(0); }
            25% { transform: translateX(-25%); }
            40% { transform: translateX(-25%); }
            50% { transform: translateX(-50%); }
            65% { transform: translateX(-50%); }
            75% { transform: translateX(-75%); }
            90% { transform: translateX(-75%); }
            100% { transform: translateX(-75%); }
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .indicator.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            padding: 100px 0;
            background-color: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(220, 25, 25, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(220, 25, 25, 0.3);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(220, 25, 25, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-red);
            font-size: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--primary-red);
            color: var(--white);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark-red);
            margin-bottom: 15px;
        }

        .feature-description {
            color: var(--text-medium);
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }

        .about-section .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content {
            flex: 1;
        }

        .about-content .section-title {
            text-align: left;
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--text-medium);
        }

        .stats-container {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-red);
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-medium);
        }

        /* ===== DOWNLOAD SECTION ===== */
        .download-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
        }

        .download-section .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .download-content {
            flex: 1;
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            margin: 40px 0;
        }

        .download-button {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            flex: 1;
            max-width: 200px;
        }

        .download-button i {
            font-size: 1.5rem;
        }

        .download-button span {
            display: flex;
            flex-direction: column;
            font-size: 0.8rem;
            line-height: 1.3;
            color: white;
        }

        .download-button span::before {
            content: "Télécharger sur";
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .download-button:hover {
            background-color: var(--dark-red);
            transform: translateY(-5px);
        }

        .qr-code {
            margin-top: 30px;
        }

        .qr-code img {
            width: 150px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .download-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .download-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        /* ===== AVIS UTILISATEURS SECTION ===== */
        .section-avis {
            max-width: 1200px;
            margin: 60px auto;
            padding: 20px;
        }

        .section-avis__entete {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-avis__titre {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-avis__titre::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--text-dark);
            border-radius: 2px;
        }

        .section-avis__etoiles {
            color: var(--accent-yellow);
            font-size: 1.8rem;
            margin: 15px 0;
            letter-spacing: 3px;
        }

        .temoignages-conteneur {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .temoignage-carte {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .temoignage-carte:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .temoignage-carte__etoiles {
            color: var(--accent-yellow);
            font-size: 1.5rem;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .temoignage-carte__texte {
            font-size: 1.1rem;
            margin: 20px 0 30px;
            position: relative;
            z-index: 1;
            font-style: italic;
            color: #555;
        }

        .temoignage-auteur {
            display: flex;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .temoignage-auteur__avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            background: var(--primary-red);
        }

        .temoignage-auteur__info {
            margin-left: 15px;
        }

        .temoignage-auteur__nom {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .temoignage-auteur__role {
            color: var(--text-medium);
            font-size: 0.9rem;
            margin-top: 3px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 100px 0;
            background-color: black;
           

        }

        .contact-container {
            display: flex;
            gap: 60px;
            margin-top: 50px;
            
            box-shadow: var(--box-shadow);
            padding: 50px;
        }

        .contact-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
           
           
        }
        .contact-info p {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-right: 10px;
}   
        .contact-info

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .info-item i {
            color: var(--primary-red);
            font-size: 1.5rem;
            min-width: 30px;
           
        }

        .contact-form {
            flex: 1;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #e0e7ff;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: #f8f9ff;
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Logo réseau social flottant */
        .floating-social {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: rgb(127, 56, 56);
            color: white;
            padding-top: 80px;
            list-style: none;
            
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col {
            padding: 20px;

        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo .logo-img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
        }

        .footer-logo .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: red;
        }

        span {
            color: red;
            font-size: 24px;
            font-weight: 700;
        }

        .footer-description {
            color: var(--light-red);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--accent-yellow);
            transform: translateY(-3px);
            color: var(--dark-red);
        }

        /* SECTION PARTENAIRES */
        .partners-col {
            grid-column: 1 / -1;
            margin-bottom: 40px;
            text-align: center;
        }

        .partners-col h4 {
            font-size: 1.8rem;
            color: var(--accent-yellow);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .partners-col h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }

        .partners-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            height: 120px;
            margin: 0 auto;
            padding: 20px 0;
           
        }

        .partners-track {
            display: flex;
            animation: scroll 10s linear infinite;
            width: calc(250px * 2); /* Adjusted for 2 sets of partners */
            height: 100%;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-250px * 2)); }
        }

        .partner-item {
            flex: 0 0 auto;
            width: 200px;
            height: 80px;
            margin: 0 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .partner-item  {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
           
        }
        .partner-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
        }

        .partner-item:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border-color: var(--accent-yellow);
        }

        .partner-item a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }

        .partner-item:hover a img {
            filter: grayscale(0) brightness(1.4);
            transform: scale(1.1);
           
        }

        .partners-slider::before,
        .partners-slider::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
        }

        .partners-slider::before {
            left: 0;
            background: linear-gradient(to right, rgb(127, 56, 56) 0%, rgba(127, 56, 56, 0) 100%);
        }

        .partners-slider::after {
            right: 0;
            background: linear-gradient(to left, rgb(127, 56, 56) 0%, rgba(127, 56, 56, 0) 100%);
        }

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

        
        .footer-bottom-links a {
            text-align: center;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links a  {
            margin-right: 10px;
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }
        .footer-links i{
            margin-right: 10px;
            color: var(--accent-yellow);
            width: 20px;
        }


.footer-links a:hover i {
    color: var(--accent-yellow);
}

        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--light-red);
        }

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

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

        .footer-bottom p {
            color: white;
            font-size: 14px;
        }
        
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-title span {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .header .container {
                padding: 0 20px;
            }
            
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                background: var(--white);
                position: absolute;
                top: 100%;
                right: 20px;
                width: 200px;
                padding: 20px;
                box-shadow: var(--box-shadow);
                border-radius: var(--border-radius);
                z-index: 999;
            }

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

            .nav-item {
                margin: 10px 0;
            }

            .cta-container {
                display: none;
            }

            .hero-section .container,
            .about-section .container,
            .download-section .container,
            .contact-container {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .hero-content,
            .about-content {
                max-width: 100%;
            }

            .about-content .section-title,
            .about-content p {
                text-align: center;
            }

            .stats-container {
                justify-content: center;
            }

            .hero-buttons,
            .download-buttons {
                justify-content: center;
            }

            .hero-carousel {
                width: 100%;
                order: 1;
                margin-top: 30px;
            }
            
            .hero-content {
                order: 2;
            }
            
            .carousel-slide img {
                height: 60vh;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .partners-col {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-title span {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }

            .download-button {
                max-width: 100%;
            }

            .features-grid,
            .temoignages-conteneur {
                grid-template-columns: 1fr;
            }

            .carousel-slide img {
                height: 50vh;
            }

            .contact-container {
                padding: 30px 20px;
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .header .container {
                flex-direction: row;
                gap: 15px;
                padding: 10px 15px;
            }

            .hero-section {
                padding: 130px 0 60px;
            }

            .hero-title {
                font-size: 2rem;
            }
            
            .hero-title span {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .carousel-slide img {
                height: 40vh;
            }

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

            .footer-logo .logo-img {
                width: 40px;
                height: 40px;
            }
            .footer-bottom-links a{
                color: white;
                list-style: none;
            }
            .footer-bottom-links a i{
                color: var(--accent-yellow);    
            }
            .footer-bottom-links a i:hover {
                color: var(--accent-yellow);
            }




            .footer-logo .logo-text {
                font-size: 20px;
            }

            .footer-col h4 {
                font-size: 18px;
            }
            
            .partners-slider {
                height: 100px;
            }
            
            .partner-item {
                width: 160px;
                height: 70px;
                margin: 0 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            .hero-title span {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .primary-button,
            .secondary-button {
                width: 100%;
                padding: 14px;
            }

            .carousel-slide img {
                height: 35vh;
            }
            
            .partners-track {
                animation-duration: 10s;
            }
            
            .partner-item {
                width: 140px;
                height: 60px;
                margin: 0 10px;
            }
            
            .section-avis {
                padding: 10px;
            }

            .temoignage-carte__texte {
                font-size: 1rem;
            }

            .temoignage-auteur__avatar {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            .cgu-section {
            background-color: var(--white);
            padding: 50px 20px;
            margin-top: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
       

        }