/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Comic Style */
/* Removed header styles, now in header.css */

/* Menu déroulant */
.nav-dropdown {
  position: relative;
  z-index: 1001;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid #333;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  text-transform: none;
  text-shadow: none;
  border-bottom: 2px solid rgba(51, 51, 51, 0.1);
  transition: all 0.3s ease;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: linear-gradient(135deg, #FFD73D, #FFA726);
  transform: translateX(5px);
}

.dropdown-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #333;
}

.location-icon {
  font-size: 1.2em;
}

.header-actions {
  display: flex;
  gap: 15px;
}

/* Boutons Comic */
.btn-comic {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 25px;
  border: 3px solid #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-comic.primary {
  background: #ff6b6b;
  color: #fff;
  text-shadow: 2px 2px 0 #333;
}

.btn-comic.secondary {
  background: #4ecdc4;
  color: #333;
}

.btn-comic.outline {
  background: transparent;
  color: #333;
  border-color: #333;
}

.btn-comic.mega {
  padding: 18px 36px;
  font-size: 1.3em;
  background: #ffd93d;
  color: #333;
  border-color: #333;
}

.btn-comic:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* ================================================
   HERO SECTION COMICS - VERSION AMÉLIORÉE
   ================================================ */

.hero-comic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #153a6e 0%, #142454 100%);

}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  object-fit: cover;
  z-index: 1;
  border-radius: 20px;
  border: 4px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(0.9) contrast(1.1);

  /* Prevent the video from intercepting clicks below it */
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  z-index: 0;
  animation: gentleFloat 12s ease-in-out infinite;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 3%;
  z-index: 10;
}

/* Welcome Text - Positionnement optimisé */
.welcome-text {
  max-width: 500px;
background: #EEAECA;
background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%);
  padding: 20px;
  border-radius: 15px;
  text-align: left;
  position: relative;
  transform: translateY(0);
  animation: heroWelcomeAppear 1.5s ease-out;
}

/* Bouton de fermeture pour le welcome text */
.welcome-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  z-index: 20;
}

.welcome-close:hover {
  background: #ff6b6b;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes heroWelcomeAppear {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-text h1 {
  font-family: 'Bangers', cursive;
  font-size: 3.2em;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #000000 0%, #613dff 60%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  line-height: 1.1;
}

.welcome-text p {
  font-family: 'Comic Neue', cursive;
  font-size: 1.4em;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #0984e3 0%, #fd79a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1.3;
}

/* Nouvelle tagline hero */
.hero-tagline {
  margin-bottom: 25px;
  text-align: center;
}

.tagline-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #ffd93d 0%, #ff6b6b 100%);
  color: #333;
  padding: 8px 16px;
  border-radius: 25px;
  border: 3px solid #333;
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: taglinePulse 3s ease-in-out infinite;
}

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

/* Boutons hero améliorés */
.welcome-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 1em;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-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;
}

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

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

.btn-icon {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats rapides dans le hero */
.hero-quick-stats {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 10px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 8px;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex: 1;
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-3px);
  background: rgba(255, 217, 61, 0.9);
}

.stat-number {
  font-family: 'Bangers', cursive;
  font-size: 1.8em;
  color: #ff6b6b;
  text-shadow: 2px 2px 0 #333;
  line-height: 1;
}

.stat-label {
  font-size: 0.8em;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

/* Logo CPF amélioré */
.cpf-logo-container {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 15px;
  border: 3px solid #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cpf-logo-container:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.cpf-logo {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.cpf-label {
  font-family: 'Bangers', cursive;
  font-size: 0.9em;
  color: #333;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

/* Interaction fixes: prevent decorative layers from blocking clicks */
.hero-bg::before,
.cities-section::before,
.cities-section::after,
.features-comic::before,
.features-comic::after,
.testimonials-comic::before,
.team-comic::before,
.team-comic::after,
.contact-comic::before,
.contact-comic::after,
.recent-articles-section::before,
.recent-articles-section::after,
.qualiopi-section::before,
.qualiopi-section::after,
.faq-comic::before,
.faq-comic::after {
  pointer-events: none;
}

/* Ensure interactive sections are above any previous stacking context */
.services-comic,
.contact-comic {
  position: relative;
  z-index: 5;
}

/* “Bon à savoir” bubble styles */
.services-info-note {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
.info-bubble {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbe6;
  border: 3px solid #333;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
  max-width: 1000px;
}
.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #333;
  background: #ffd93d;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-text p {
  margin: 0;
  color: #333;
  font-weight: 600;
}
.info-text strong {
  font-family: 'Bangers', cursive;
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.info-link {
  color: #0984e3;
  text-decoration: underline;
  font-weight: 700;
}
.info-bubble:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}



.city-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 4px solid #333;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

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

.city-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.city-card h4 {
  font-family: 'Bangers', cursive;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.city-contact-details {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.city-contact-details p {
  color: #666;
  margin: 8px 0;
  font-weight: 500;
}

.city-contact-details .phone {
  color: #4ecdc4;
  font-weight: 700;
}

.city-contact-details .email {
  color: #ff6b6b;
  font-weight: 700;
  word-break: break-word;
}

.city-button {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.city-btn {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  border: 3px solid #333;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 0 #333;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 
    4px 4px 8px rgba(0, 0, 0, 0.3),
    -2px -2px 4px rgba(255, 255, 255, 0.7);
}

.city-btn:hover {
  background: linear-gradient(135deg, #0984e3, #74b9ff);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.4),
    -3px -3px 6px rgba(255, 255, 255, 0.8),
    0 8px 16px rgba(116, 185, 255, 0.4);
}

/* Supprimer les anciens styles */
.cities-content,
.cities-image-section,
.cities-grid-section,
.cities-main-image,
.city-icon,
.city-name,
.city-info,
.city-contact {
  display: none !important;
}

/* Responsive pour la section villes */
@media (max-width: 768px) {
  .cities-title {
    font-size: 2.5em;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .city-card {
    min-height: 320px;
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .cities-title {
    font-size: 2em;
  }
  
  .city-card {
    padding: 20px 15px;
    min-height: 300px;
  }
  
  .city-btn {
    padding: 10px 25px;
    font-size: 1em;
  }
}

/* Services Section - Style identique à pricing de permis-b-manuel.css */
.services-comic {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #ff9999 0%, 
            #66d9d4 25%, 
            #ffeb99 50%, 
            #99c7ff 75%, 
            #ff9999 100%
        );
    background-size: 400% 400%;
    animation: comicGradientMove 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.services-comic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Trames de points Ben Day style */
        radial-gradient(circle at 25% 25%, #333 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #333 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, #333 1px, transparent 1px),
        /* Lignes diagonales */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(51, 51, 51, 0.1) 8px,
            rgba(51, 51, 51, 0.1) 10px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 12px,
            rgba(51, 51, 51, 0.05) 12px,
            rgba(51, 51, 51, 0.05) 14px
        ),
        /* Trames en croix */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(51, 51, 51, 0.08) 20px,
            rgba(51, 51, 51, 0.08) 22px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(51, 51, 51, 0.08) 20px,
            rgba(51, 51, 51, 0.08) 22px
        );
    background-size: 
        40px 40px,
        60px 60px,
        20px 20px,
        30px 30px,
        35px 35px,
        80px 80px,
        80px 80px;
    opacity: 0.2;
    animation: comicPatternMove 15s linear infinite;
    pointer-events: none;
}

.services-comic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Dégradés en losanges */
        conic-gradient(from 45deg at 20% 30%, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.06) 90deg, 
            transparent 180deg, 
            rgba(255, 255, 255, 0.03) 270deg, 
            transparent 360deg
        ),
        conic-gradient(from 135deg at 80% 70%, 
            transparent 0deg, 
            rgba(51, 51, 51, 0.06) 90deg, 
            transparent 180deg, 
            rgba(51, 51, 51, 0.03) 270deg, 
            transparent 360deg
        ),
        /* Dégradés radiaux pour effet comics */
        radial-gradient(ellipse at 10% 20%, 
            rgba(255, 153, 153, 0.12) 0%, 
            transparent 60%
        ),
        radial-gradient(ellipse at 90% 80%, 
            rgba(102, 217, 212, 0.12) 0%, 
            transparent 60%
        ),
        radial-gradient(ellipse at 60% 40%, 
            rgba(255, 235, 153, 0.08) 0%, 
            transparent 50%
        );
    background-size: 
        200px 200px,
        180px 180px,
        300px 300px,
        250px 250px,
        150px 150px;
    opacity: 0.25;
    animation: comicOverlayMove 12s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Make sure the Services content is above pseudo-elements */
.services-comic .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: serviceFloat 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: -2s;
}

.service-card:nth-child(3) {
    animation-delay: -4s;
}

.service-card:nth-child(4) {
    animation-delay: -1s;
}

.service-card:nth-child(5) {
    animation-delay: -3s;
}

.service-card:nth-child(6) {
    animation-delay: -5s;
}

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

.service-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card.featured {
    border-color: #ffd93d;
    transform: scale(1.05);
}

.featured-badge {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-align: center;
    padding: 10px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-shadow: 1px 1px 0 #fff;
    border-bottom: 3px solid #333;
}

.card-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #333;
    position: relative;
}

.service-card.featured .card-header {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #333;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 2.5em;
    color: #333;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffeb99;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.1em;
    border: 2px solid #333;
}

.service-card.featured .price-badge {
    background: #ff6b6b;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
}

.card-content p {
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  color: #333;
  font-weight: 500;
}

.card-content .btn-comic {
  width: 100%;
  text-align: center;
  display: block;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

        .comic-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 
                4px 4px 0px #000,
                -1px -1px 0px #000,
                1px -1px 0px #000,
                -1px 1px 0px #000,
                1px 1px 0px #000;
            margin-bottom: 20px;
            transform: perspective(500px) rotateX(15deg);
            text-align: center;
        }

.comic-subtitle {
    font-size: 1.3em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about-comic {
    padding: 50px 0 100px 0;
    background: 
        linear-gradient(135deg, 
            #a8e6cf 0%, 
            #dcedc1 25%, 
            #ffd3a5 50%, 
            #fd9853 75%, 
            #a8e6cf 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 12s ease-in-out infinite;
    margin-top: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-comic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(168, 230, 207, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 211, 165, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.05) 0%, transparent 70%);
    animation: gentleFloat 10s ease-in-out infinite;
}

.about-comic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="rgba(255,255,255,0.05)" rx="5" transform="rotate(15 50 50)"/></svg>') repeat,
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 Q 30 30, 50 50 Q 70 70, 90 50" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    background-size: 90px 90px, 140px 140px;
    animation: floatingElements 18s linear infinite;
    opacity: 0.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.comic-image {
    width: 120%; /* Increased from 100% to 120% */
    max-width: 600px; /* Increased from 500px to 600px */
    height: auto;
    border-radius: 20px;
    border: 4px solid #333;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.comic-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.comic-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
}

.story-panel {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #333;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 100%;
}

.story-panel h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.story-panel p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Mobile: stack image above story panel */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        justify-content: center;
    }
    
    .comic-image {
        width: 90%;
        max-width: 400px;
    }
}

.stats-heroes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 2.5em;
    color: #ff6b6b;
    text-shadow: 2px 2px 0 #333;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
}

/* Animations nécessaires */
@keyframes gentleFlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) scale(1.02) rotate(1deg); 
    }
}

/* ================================================
   SECTION CITIES - VERSION AMÉLIORÉE
   ================================================ */

/* Section Villes (restore styles) */
.cities-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  position: relative;
  overflow: hidden;
}

.cities-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: gentleFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.cities-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="15" y="25" width="70" height="50" fill="rgba(255,255,255,0.08)" rx="8" transform="rotate(5 50 50)"/></svg>') repeat,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
  background-size: 150px 150px, 100px 100px;
  animation: cityFloat 20s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

.cities-section .container {
  position: relative;
  z-index: 2;
}

.cities-title {
  font-family: 'Bangers', cursive;
  font-size: 3em;
  color: #fff;
  text-shadow: 3px 3px 0 #333;
  text-align: center;
  margin-bottom: 20px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Animation used by cities ::after */
@keyframes cityFloat {
  0% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0.4; }
  25% { transform: translateX(20px) translateY(-15px) rotate(1deg); opacity: 0.3; }
  50% { transform: translateX(40px) translateY(0) rotate(-1deg); opacity: 0.5; }
  75% { transform: translateX(20px) translateY(15px) rotate(0.5deg); opacity: 0.2; }
  100% { transform: translateX(0) translateY(0) rotate(0deg); opacity: 0.4; }
}

/* ...existing code... */
.card-content p {
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.features-list li {
  padding: 8px 0;
  color: #333;
  font-weight: 500;
}

.card-content .btn-comic {
  width: 100%;
  text-align: center;
  display: block;
}

/* Testimonials Section - Carousel 3D */
.testimonials-comic {
  padding: 100px 0;
  background: linear-gradient(135deg, #153a6e 0%, #142454 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-comic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(229, 255, 0, 0.8) 1px, transparent 1px),
    radial-gradient(circle at 85% 35%, rgba(255, 208, 0, 0.6) 2px, transparent 2px),
    radial-gradient(circle at 45% 65%, rgba(255, 251, 0, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 230, 0, 0.7) 1px, transparent 1px),
    radial-gradient(circle at 25% 85%, rgba(255,255,255,0.5) 2px, transparent 2px),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,0.3) 1px, transparent 1px),
    radial-gradient(circle at 90% 60%, rgba(255,255,255,0.6) 1px, transparent 2px),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.4) 2px, transparent 2px);
  background-size: 100px 100px, 150px 150px, 120px 120px, 180px 180px, 200px 200px, 80px 80px, 130px 130px, 160px 160px;
  animation: twinkle 6s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Style spécifique pour les titres sur fond constellation */
.testimonials-comic .comic-title {
  color: #fff;
  text-shadow: 3px 3px 0 #333, 0 0 20px rgba(255,255,255,0.5);
}

.testimonials-comic .comic-subtitle {
  color: #ffbb00;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.testimonials-carousel-wrapper {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.testimonials-carousel-inner {
  --w: 200px;
  --h: 280px;
  --translateZ: calc((var(--w) + var(--h)) * 0.8);
  --rotateX: -10deg;
  --perspective: 1200px;
  position: absolute;
  width: var(--w);
  height: var(--h);
  transform-style: preserve-3d;
  transform: perspective(var(--perspective)) rotateX(var(--rotateX));
  animation: testimonialRotating 30s linear infinite;
}

@keyframes testimonialRotating {
  from {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(0);
  }
  to {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(360deg);
  }
}

.testimonial-carousel-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 4px solid rgba(var(--color-card), 1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(var(--color-card), 0.3);
  transform: rotateY(calc((360deg / var(--quantity)) * var(--index))) translateZ(var(--translateZ));
  transition: all 0.3s ease;
}

.testimonial-carousel-card:hover {
  transform: rotateY(calc((360deg / var(--quantity)) * var(--index))) translateZ(calc(var(--translateZ) + 20px));
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(var(--color-card), 0.5);
}

.testimonial-content {
  width: 100%;
  height: 100%;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: 
    linear-gradient(135deg, 
      rgba(var(--color-card), 0.1) 0%, 
      rgba(var(--color-card), 0.05) 50%, 
      rgba(var(--color-card), 0.1) 100%
    );
  position: relative;
  box-sizing: border-box;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(var(--color-card), 0.2) 0%, transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(var(--color-card), 0.15) 0%, transparent 70%);
  z-index: 1;
}

/* Avatar optimisé */
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(var(--color-card), 0.8);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Contenu texte optimisé */
.testimonial-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  overflow: hidden;
}

.testimonial-text p {
  font-size: 0.9em;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-text h4 {
  font-size: 1.2em;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.testimonial-text span {
  font-size: 0.8em;
  color: #666;
  font-style: italic;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.testimonial-text .stars {
  color: #ffd93d;
  font-size: 0.9em;
  flex-shrink: 0;
}


/* Team Section */
.team-comic {
  padding: 100px 0;
  background: 
    linear-gradient(135deg, 
      #f093fb 0%, 
      #f5576c 25%, 
      #fd79a8 50%, 
      #e84393 75%, 
      #f093fb 100%
    );
  background-size: 400% 400%;
  animation: gentleFlow 10s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.team-comic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(245, 87, 108, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 0%, transparent 60%);
  animation: gentleFloat 12s ease-in-out infinite;
}

.team-comic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="3" fill="rgba(245,87,108,0.3)"/><circle cx="70" cy="70" r="2" fill="rgba(240,147,251,0.4)"/></svg>') repeat,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,40 80,40 50,80" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
  background-size: 110px 110px, 160px 160px;
  animation: teamFloat 22s linear infinite;
  opacity: 0.6;
}

@keyframes floatRight {
  0% { 
    transform: translateX(-100px); 
  }
  100% { 
    transform: translateX(calc(100vw + 100px)); 
  }
}

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

.team-card {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #333;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.team-image {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  padding: 30px;
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #333;
  background: #fff;
  padding: 5px;
}

.hero-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffd93d;
  color: #333;
  padding: 5px 10px;
  border-radius: 15px;
  font-family: 'Bangers', cursive;
  font-size: 0.9em;
  border: 2px solid #333;
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
}

.team-info p {
  color: #666;
  margin-bottom: 20px;
}

.team-powers {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.team-powers span {
  background: #f8f9fa;
  padding: 5px 10px;
  border-radius: 15px;
  border: 2px solid #333;
  font-size: 0.9em;
  color: #333;
}

/* Contact Section */
.contact-comic {
  padding: 100px 0;
  background: 
    linear-gradient(135deg, 
      #a8e6cf 0%, 
      #dcedc1 25%, 
      #ffd3a5 50%, 
      #fd9853 75%, 
      #a8e6cf 100%
    );
  background-size: 400% 400%;
  animation: gentleFlow 10s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.contact-comic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(168, 230, 207, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255, 211, 165, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(253, 152, 83, 0.1) 0%, transparent 60%);
  animation: gentleFloat 8s ease-in-out infinite;
}

.contact-comic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="rgba(255,255,255,0.05)" rx="5" transform="rotate(15 50 50)"/></svg>') repeat,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="4" fill="rgba(168,230,207,0.3)" opacity="0.6"/></svg>') repeat;
  background-size: 120px 120px, 80px 80px;
  animation: contactFloat 12s ease-in-out infinite;
  opacity: 0.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border: 3px solid #333;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.contact-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
}

.contact-card p {
  color: #666;
}

.comic-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 4px solid #333;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.comic-form h3 {
  font-family: 'Bangers', cursive;
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 3px solid #333;
  border-radius: 10px;
  font-size: 1em;
  font-family: 'Comic Neue', cursive;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}


/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  animation: float 3s ease-in-out infinite;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  animation: gentleFlow 10s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.latest-article-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 80,80 20,80" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 300px 300px, 250px 250px, 80px 80px;
  animation: gentlePatterns 20s linear infinite;
}

.latest-article-section .container {
  position: relative;
  z-index: 2;
}

.latest-article-section .section-title {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.latest-article-section .comic-line {
  background: white;
}

.latest-article-card {
  background: white;
  border: 5px solid #333;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 15px 15px 0 rgba(0,0,0,0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.latest-article-card::before {
  content: 'NOUVEAU!';
  position: absolute;
  top: 20px;
  left: -10px;
  background: #ff6b6b;
  color: white;
  padding: 10px 20px;
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  transform: rotate(-10deg);
  z-index: 3;
  border: 3px solid #333;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.article-image {
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.article-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.article-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-title {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.article-excerpt {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.article-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.article-actions .btn-comic {
  font-size: 1rem;
  padding: 12px 24px;
}

/* Section des 3 derniers articles */
.recent-articles-section {
  padding: 100px 0;
  background: linear-gradient(45deg, #ff6b6b 0%, #4ecdc4 25%, #ffd93d 50%, #a8e6cf 75%, #ff6b6b 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.recent-articles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, #333 3px, transparent 3px),
    radial-gradient(circle at  80% 70%, #333 2px, transparent 2px),
    radial-gradient(circle at 40% 80%, #333 4px, transparent 4px),
       radial-gradient(circle at 90% 20%, #333 2px, transparent 2px),
    radial-gradient(circle at 10% 90%, #333 3px, transparent 3px),
    radial-gradient(circle at 60% 40%, #333 2px, transparent 2px),
    radial-gradient(circle at 30% 60%, #333 3px, transparent 3px);
  background-size: 80px 80px, 60px 60px, 120px 120px, 40px 40px, 100px 100px;
  opacity: 0.1;
  animation: float 20s linear infinite;
}

.recent-articles-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="30" width="80" height="40" fill="rgba(255,255,255,0.05)" rx="8" transform="rotate(10 50 50)"/></svg>') repeat,
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 85,85 15,85" fill="rgba(51,51,51,0.03)"/></svg>') repeat;
  background-size: 140px 140px, 90px 90px;
  animation: articleFloat 25s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

.recent-articles-section .container {
  position: relative;
  z-index: 2;
}

.recent-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.recent-article-card {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #333;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.recent-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.recent-article-card:nth-child(1) {
  border-color: #ff6b6b;
}

.recent-article-card:nth-child(2) {
  border-color: #4ecdc4;
}

.recent-article-card:nth-child(3) {
  border-color: #ffd93d;
}

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

.recent-article-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.recent-article-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.recent-article-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Bangers', cursive;
  font-size: 0.9em;
  z-index: 3;
}

.recent-article-content {
  padding: 30px;
}

.recent-article-title {
  font-family: 'Bangers', cursive;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.recent-article-card:nth-child(1):hover .recent-article-title {
  color: #ff6b6b;
}

.recent-article-card:nth-child(2):hover .recent-article-title {
  color: #4ecdc4;
}

.recent-article-card:nth-child(3):hover .recent-article-title {
  color: #ffd93d;
}

.recent-article-excerpt {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.recent-article-content .btn-comic {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9em;
}

.recent-articles-footer {
  text-align: center;
  margin-top: 30px;
}

.recent-articles-footer .btn-comic {
  display: inline-block; /* Assure que le bouton est centré */
  margin: 0 auto;
  width: auto; /* Annule toute largeur forcée */
  text-align: center;
}

.no-articles, .error-articles {
  text-align: center;
  padding: 60px;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #333;
  margin: 20px 0;
}

.no-articles p, .error-articles p {
  font-family: 'Bangers', cursive;
  font-size: 1.5em;
  color: #666;
  margin: 0;
}
/* Section Qualiopi */
.qualiopi-section {
  padding: 100px 0;
  background: 
    
    linear-gradient(135deg, 
      #dda0dd 0%, 
      #e6e6fa 25%, 
      #f0f8ff 50%, 
      #e0e6ff 75%, 
      #dda0dd 100%
    );
  background-size: 400% 400%;
  animation: gentleFlow 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.qualiopi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(221, 160, 221, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(240, 248, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(224, 230, 255, 0.08) 0%, transparent 60%);
  animation: gentleFloat 12s ease-in-out infinite;
}

.qualiopi-section::after {
  display: none;
}

.qualiopi-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  justify-content: start;
}

.qualiopi-info {
  display: flex;
  gap: 40px;
  align-items: center;
}

.qualiopi-logo-section {
  flex-shrink: 0;
}

.qualiopi-logo {
  width: 220px;
  height: auto;
  border-radius: 15px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.certification-details h3 {
  font-family: 'Bangers', cursive;
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.certification-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.qualiopi-benefits {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 25px;
  border: 3px solid #333;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #ffd93d;
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 1.5em;
}

.contact-qualiopi {
  display: flex;
  justify-content: flex-start;
}

.contact-card-qualiopi {
  background: #fff;
  border: 4px solid #333;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 500px; /* Increased from 400px to 500px */
  transition: all 0.3s ease;
}

.contact-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 20px;
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 40px;
}

.contact-label {
  font-weight: bold;
  color: #333;
  flex-shrink: 0;
}

.contact-value {
  color: #666;
  text-align: right;
  word-break: break-word;
}

.certificate-download {
  text-align: center;
  margin-top: 20px;
}

.certificate-download .btn-comic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  font-size: 1em;
  background: linear-gradient(135deg, #4ecdc4 0%, #45b7af 100%);
  color: #333;
  border: 3px solid #333;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

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

.certificate-download .btn-comic:hover::before {
  left: 100%;
}

.certificate-download .btn-comic:hover {
  background: linear-gradient(135deg, #45b7af 0%, #3da8a0 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.download-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.certificate-download .btn-comic.download-btn:hover .download-icon {
  transform: translateY(3px);
  animation: downloadPulse 1s ease-in-out infinite;
}

.certificate-download .btn-comic.download-btn:hover .download-icon svg {
  stroke-width: 2.5;
}

@keyframes downloadPulse {
  0%, 100% { transform: translateY(3px) scale(1); }
  50% { transform: translateY(0) scale(1.1); }
}

.certificate-download .btn-comic.download-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}


/* Section FAQ avec style comic amélioré */
#faq.faq-comic {
  padding: 100px 0;
  background: 
    linear-gradient(135deg, 
      #ff9a8b 0%, 
      #ffeaa7 25%, 
      #fd79a8 50%, 
      #a8e6cf 75%, 
      #ff9a8b 100%
    );
  background-size: 400% 400%;
  animation: gentleFlow 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.faq-comic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 154, 139, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 234, 167, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(253, 121, 168, 0.08) 0%, transparent 60%),
    /* Trames de points style BD */
    radial-gradient(circle at 25% 25%, #333 1.5px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, #333 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, #333 2px, transparent 2px);
  background-size: 
    300px 300px,
    250px 250px,
    400px 400px,
    60px 60px,
    40px 40px,
    80px 80px;
  animation: gentleFloat 10s ease-in-out infinite, comicPatternMove 15s linear infinite;
  opacity: 0.3;
}

.faq-comic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Bulles de BD */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="8" fill="rgba(255,255,255,0.1)" stroke="rgba(51,51,51,0.2)" stroke-width="2"/><circle cx="75" cy="60" r="6" fill="rgba(255,255,255,0.08)" stroke="rgba(51,51,51,0.15)" stroke-width="1.5"/></svg>') repeat,
    /* Lignes d'action */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 L90 50 M20 40 L80 40 M30 60 L70 60" stroke="rgba(51,51,51,0.1)" stroke-width="1" fill="none"/></svg>') repeat,
    /* Étoiles d'impact */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 55,35 80,35 60,50 70,75 50,60 30,75 40,50 20,35 45,35" fill="rgba(255,217,61,0.2)"/></svg>') repeat;
  background-size: 
    120px 120px,
    80px 80px,
    150px 150px;
  animation: comicBubbleFloat 20s linear infinite;
  opacity: 0.4;
}

@keyframes comicBubbleFloat {
  0% { 
    transform: translateX(0) translateY(0) rotate(0deg); 
    opacity: 0.4; 
  }
  25% { 
    transform: translateX(20px) translateY(-15px) rotate(2deg); 
    opacity: 0.3; 
  }
  50% { 
    transform: translateX(40px) translateY(10px) rotate(-1deg); 
    opacity: 0.5; 
  }
  75% { 
    transform: translateX(20px) translateY(-10px) rotate(1deg); 
    opacity: 0.2; 
  }
  100% { 
    transform: translateX(0) translateY(0) rotate(0deg); 
    opacity: 0.4; 
  }
}

.faq-comic .container {
  position: relative;
  z-index: 2;
}

.faq-grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid #333;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 217, 61, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.faq-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 217, 61, 0.2);
}

.faq-question h3 {
  font-family: 'Comic Neue', cursive;
  font-size: 1.2em;
  color: #333;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-transform: none;
}

.faq-question h3 i {
  color: #4ecdc4;
  font-size: 1.3em;
  padding: 8px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  border: 2px solid #4ecdc4;
}

.faq-toggle {
  font-size: 1.5em;
  color: #333;
  font-weight: bold;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border: 3px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 30px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.faq-footer .btn-comic {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #333;
  border: 4px solid #333;
  padding: 18px 36px;
  font-size: 1.2em;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

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

.faq-footer .btn-comic:hover::before {
  left: 100%;
}

.faq-footer .btn-comic:hover {
  background: linear-gradient(135deg, #ffd93d, #ffcd02);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}



/* Offre de Parrainage dans le Hero - Position optimisée */
.hero-referral-offer {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
}

.hero-referral-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 3px solid #ffd93d;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 217, 61, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: heroReferralFloat 3s ease-in-out infinite;
  max-width: 280px;
}

.hero-referral-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 217, 61, 0.8),
    0 0 20px rgba(255, 217, 61, 0.6);
}

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

.hero-referral-icon {
  font-size: 1.8em;
  animation: bounce 2s ease-in-out infinite;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-referral-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hero-gift-icon {
  font-size: 1.5em;
  animation: pulse 1.5s ease-in-out infinite;
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-offer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-offer-highlight {
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-offer-condition {
  font-size: 0.85em;
  color: #666;
  font-weight: 600;
  line-height: 1;
}

/* Animations communes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@keyframes fly {
  0%, 100% { 
    transform: translateY(0) translateX(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-10px) translateX(20px) rotate(-3deg); 
  }
  75% { 
    transform: translateY(-25px) translateX(5px) rotate(7deg); 
  }
}

/* Nouvelles animations pour les effets d'arrière-plan */
@keyframes floatingShapes {
  0% { transform: translateX(-100px) translateY(0) rotate(0deg); }
  25% { transform: translateX(-50px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0) translateY(10px) rotate(180deg); }
  75% { transform: translateX(50px) translateY(-30px) rotate(270deg); }
  100% { transform: translateX(100px) translateY(0) rotate(360deg); }
}

@keyframes floatingElements {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
  66% { transform: translateY(10px) scale(0.95) rotate(-3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes contactFloat {
  0% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(15px) translateY(-10px) scale(1.02); }
  50% { transform: translateX(30px) translateY(5px) scale(0.98); }
  75% { transform: translateX(15px) translateY(-15px) scale(1.03); }
  100% { transform: translateX(0) translateY(0) scale(1); }
}

@keyframes articleFloat {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.01); }
  50% { transform: rotate(-1deg) scale(0.99); }
  75% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes teamFloat {
  0% { transform: translateX(0) translateY(0); }
  20% { transform: translateX(10px) translateY(-8px); }
  40% { transform: translateX(20px) translateY(5px); }
  60% { transform: translateX(15px) translateY(-12px); }
  80% { transform: translateX(5px) translateY(3px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes gentlePatterns {
  0% { background-position: 0 0, 0 0, 0 0; }
  25% { background-position: 20px 10px, -10px 15px, 5px -5px; }
  50% { background-position: 40px 0, -20px 30px, 10px -10px; }
  75% { background-position: 20px -10px, -10px 15px, 5px -5px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}

.faq-footer .btn-comic {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #333;
  border: 4px solid #333;
  padding: 18px 36px;
  font-size: 1.2em;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

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

.faq-footer .btn-comic:hover::before {
  left: 100%;
}

.faq-footer .btn-comic:hover {
  background: linear-gradient(135deg, #ffd93d, #ffcd02);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}



/* Offre de Parrainage dans le Hero - Position optimisée */
.hero-referral-offer {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
}

.hero-referral-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 3px solid #ffd93d;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 217, 61, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: heroReferralFloat 3s ease-in-out infinite;
  max-width: 280px;
}

.hero-referral-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 217, 61, 0.8),
    0 0 20px rgba(255, 217, 61, 0.6);
}

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

.hero-referral-icon {
  font-size: 1.8em;
  animation: bounce 2s ease-in-out infinite;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-referral-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hero-gift-icon {
  font-size: 1.5em;
  animation: pulse 1.5s ease-in-out infinite;
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-offer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-offer-highlight {
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-offer-condition {
  font-size: 0.85em;
  color: #666;
  font-weight: 600;
  line-height: 1;
}

/* Animations communes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@keyframes fly {
  0%, 100% { 
    transform: translateY(0) translateX(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-10px) translateX(20px) rotate(-3deg); 
  }
  75% { 
    transform: translateY(-25px) translateX(5px) rotate(7deg); 
  }
}

/* Nouvelles animations pour les effets d'arrière-plan */
@keyframes floatingShapes {
  0% { transform: translateX(-100px) translateY(0) rotate(0deg); }
  25% { transform: translateX(-50px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0) translateY(10px) rotate(180deg); }
  75% { transform: translateX(50px) translateY(-30px) rotate(270deg); }
  100% { transform: translateX(100px) translateY(0) rotate(360deg); }
}

@keyframes floatingElements {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
  66% { transform: translateY(10px) scale(0.95) rotate(-3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes contactFloat {
  0% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(15px) translateY(-10px) scale(1.02); }
  50% { transform: translateX(30px) translateY(5px) scale(0.98); }
  75% { transform: translateX(15px) translateY(-15px) scale(1.03); }
  100% { transform: translateX(0) translateY(0) scale(1); }
}

@keyframes articleFloat {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.01); }
  50% { transform: rotate(-1deg) scale(0.99); }
  75% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes teamFloat {
  0% { transform: translateX(0) translateY(0); }
  20% { transform: translateX(10px) translateY(-8px); }
  40% { transform: translateX(20px) translateY(5px); }
  60% { transform: translateX(15px) translateY(-12px); }
  80% { transform: translateX(5px) translateY(3px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes gentlePatterns {
  0% { background-position: 0 0, 0 0, 0 0; }
  25% { background-position: 20px 10px, -10px 15px, 5px -5px; }
  50% { background-position: 40px 0, -20px 30px, 10px -10px; }
  75% { background-position: 20px -10px, -10px 15px, 5px -5px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 217, 61, 0.2);
}

.faq-question h3 {
  font-family: 'Comic Neue', cursive;
  font-size: 1.2em;
  color: #333;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-transform: none;
}

.faq-question h3 i {
  color: #4ecdc4;
  font-size: 1.3em;
  padding: 8px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  border: 2px solid #4ecdc4;
}

.faq-toggle {
  font-size: 1.5em;
  color: #333;
  font-weight: bold;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border: 3px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 30px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.faq-footer .btn-comic {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #333;
  border: 4px solid #333;
  padding: 18px 36px;
  font-size: 1.2em;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

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

.faq-footer .btn-comic:hover::before {
  left: 100%;
}

.faq-footer .btn-comic:hover {
  background: linear-gradient(135deg, #ffd93d, #ffcd02);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}


/* Section FAQ avec style comic amélioré */
#faq.faq-comic {
  padding: 100px 0;
  background: 
    linear-gradient(135deg, 
      #ff9a8b 0%, 
      #ffeaa7 25%, 
      #fd79a8 50%, 
      #a8e6cf 75%, 
      #ff9a8b 100%
    );
  background-size: 400% 400%;
  animation: gentleFlow 12s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.faq-comic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 154, 139, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 234, 167, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(253, 121, 168, 0.08) 0%, transparent 60%),
    /* Trames de points style BD */
    radial-gradient(circle at 25% 25%, #333 1.5px, transparent 1.5px),
    radial-gradient(circle at 75% 75%, #333 1px, transparent 1px),
    radial-gradient(circle at 50% 80%, #333 2px, transparent 2px);
  background-size: 
    300px 300px,
    250px 250px,
    400px 400px,
    60px 60px,
    40px 40px,
    80px 80px;
  animation: gentleFloat 10s ease-in-out infinite, comicPatternMove 15s linear infinite;
  opacity: 0.3;
}

.faq-comic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Bulles de BD */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="8" fill="rgba(255,255,255,0.1)" stroke="rgba(51,51,51,0.2)" stroke-width="2"/><circle cx="75" cy="60" r="6" fill="rgba(255,255,255,0.08)" stroke="rgba(51,51,51,0.15)" stroke-width="1.5"/></svg>') repeat,
    /* Lignes d'action */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10 50 L90 50 M20 40 L80 40 M30 60 L70 60" stroke="rgba(51,51,51,0.1)" stroke-width="1" fill="none"/></svg>') repeat,
    /* Étoiles d'impact */
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 55,35 80,35 60,50 70,75 50,60 30,75 40,50 20,35 45,35" fill="rgba(255,217,61,0.2)"/></svg>') repeat;
  background-size: 
    120px 120px,
    80px 80px,
    150px 150px;
  animation: comicBubbleFloat 20s linear infinite;
  opacity: 0.4;
}

@keyframes comicBubbleFloat {
  0% { 
    transform: translateX(0) translateY(0) rotate(0deg); 
    opacity: 0.4; 
  }
  25% { 
    transform: translateX(20px) translateY(-15px) rotate(2deg); 
    opacity: 0.3; 
  }
  50% { 
    transform: translateX(40px) translateY(10px) rotate(-1deg); 
    opacity: 0.5; 
  }
  75% { 
    transform: translateX(20px) translateY(-10px) rotate(1deg); 
    opacity: 0.2; 
  }
  100% { 
    transform: translateX(0) translateY(0) rotate(0deg); 
    opacity: 0.4; 
  }
}

.faq-comic .container {
  position: relative;
  z-index: 2;
}

.faq-grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 4px solid #333;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 217, 61, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.faq-item:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 217, 61, 0.2);
}

.faq-question h3 {
  font-family: 'Comic Neue', cursive;
  font-size: 1.2em;
  color: #333;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-transform: none;
}

.faq-question h3 i {
  color: #4ecdc4;
  font-size: 1.3em;
  padding: 8px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  border: 2px solid #4ecdc4;
}

.faq-toggle {
  font-size: 1.5em;
  color: #333;
  font-weight: bold;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border: 3px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: #fff;
  transform: rotate(45deg);
  box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 16px 16px;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 30px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1em;
  font-weight: 500;
}

.faq-footer {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.faq-footer .btn-comic {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  color: #333;
  border: 4px solid #333;
  padding: 18px 36px;
  font-size: 1.2em;
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.2),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

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

.faq-footer .btn-comic:hover::before {
  left: 100%;
}

.faq-footer .btn-comic:hover {
  background: linear-gradient(135deg, #ffd93d, #ffcd02);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 3px rgba(255, 217, 61, 0.6);
}



/* Offre de Parrainage dans le Hero - Position optimisée */
.hero-referral-offer {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
}

.hero-referral-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 3px solid #ffd93d;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 217, 61, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: heroReferralFloat 3s ease-in-out infinite;
  max-width: 280px;
}

.hero-referral-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 217, 61, 0.8),
    0 0 20px rgba(255, 217, 61, 0.6);
}

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

.hero-referral-icon {
  font-size: 1.8em;
  animation: bounce 2s ease-in-out infinite;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-referral-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hero-gift-icon {
  font-size: 1.5em;
  animation: pulse 1.5s ease-in-out infinite;
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-offer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-offer-highlight {
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-offer-condition {
  font-size: 0.85em;
  color: #666;
  font-weight: 600;
  line-height: 1;
}

/* Animations communes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@keyframes fly {
  0%, 100% { 
    transform: translateY(0) translateX(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-10px) translateX(20px) rotate(-3deg); 
  }
  75% { 
    transform: translateY(-25px) translateX(5px) rotate(7deg); 
  }
}

/* Nouvelles animations pour les effets d'arrière-plan */
@keyframes floatingShapes {
  0% { transform: translateX(-100px) translateY(0) rotate(0deg); }
  25% { transform: translateX(-50px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0) translateY(10px) rotate(180deg); }
  75% { transform: translateX(50px) translateY(-30px) rotate(270deg); }
  100% { transform: translateX(100px) translateY(0) rotate(360deg); }
}

@keyframes floatingElements {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
  66% { transform: translateY(10px) scale(0.95) rotate(-3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes contactFloat {
  0% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(15px) translateY(-10px) scale(1.02); }
  50% { transform: translateX(30px) translateY(5px) scale(0.98); }
  75% { transform: translateX(15px) translateY(-15px) scale(1.03); }
  100% { transform: translateX(0) translateY(0) scale(1); }
}

@keyframes articleFloat {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.01); }
  50% { transform: rotate(-1deg) scale(0.99); }
  75% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes teamFloat {
  0% { transform: translateX(0) translateY(0); }
  20% { transform: translateX(10px) translateY(-8px); }
  40% { transform: translateX(20px) translateY(5px); }
  60% { transform: translateX(15px) translateY(-12px); }
  80% { transform: translateX(5px) translateY(3px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes gentlePatterns {
  0% { background-position: 0 0, 0 0, 0 0; }
  25% { background-position: 20px 10px, -10px 15px, 5px -5px; }
  50% { background-position: 40px 0, -20px 30px, 10px -10px; }
  75% { background-position: 20px -10px, -10px 15px, 5px -5px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}




/* Offre de Parrainage dans le Hero - Position optimisée */
.hero-referral-offer {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
}

.hero-referral-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 3px solid #ffd93d;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 217, 61, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: heroReferralFloat 3s ease-in-out infinite;
  max-width: 280px;
}

.hero-referral-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(255, 217, 61, 0.8),
    0 0 20px rgba(255, 217, 61, 0.6);
}

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

.hero-referral-icon {
  font-size: 1.8em;
  animation: bounce 2s ease-in-out infinite;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-referral-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hero-gift-icon {
  font-size: 1.5em;
  animation: pulse 1.5s ease-in-out infinite;
  color: #ff6b6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-offer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-offer-highlight {
  font-family: 'Bangers', cursive;
  font-size: 1.1em;
  color: #333;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-offer-condition {
  font-size: 0.85em;
  color: #666;
  font-weight: 600;
  line-height: 1;
}

/* Animations communes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

@keyframes fly {
  0%, 100% { 
    transform: translateY(0) translateX(0) rotate(0deg); 
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(5deg); 
  }
  50% { 
    transform: translateY(-10px) translateX(20px) rotate(-3deg); 
  }
  75% { 
    transform: translateY(-25px) translateX(5px) rotate(7deg); 
  }
}

/* Nouvelles animations pour les effets d'arrière-plan */
@keyframes floatingShapes {
  0% { transform: translateX(-100px) translateY(0) rotate(0deg); }
  25% { transform: translateX(-50px) translateY(-20px) rotate(90deg); }
  50% { transform: translateX(0) translateY(10px) rotate(180deg); }
  75% { transform: translateX(50px) translateY(-30px) rotate(270deg); }
  100% { transform: translateX(100px) translateY(0) rotate(360deg); }
}

@keyframes floatingElements {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
  66% { transform: translateY(10px) scale(0.95) rotate(-3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes contactFloat {
  0% { transform: translateX(0) translateY(0) scale(1); }
  25% { transform: translateX(15px) translateY(-10px) scale(1.02); }
  50% { transform: translateX(30px) translateY(5px) scale(0.98); }
  75% { transform: translateX(15px) translateY(-15px) scale(1.03); }
  100% { transform: translateX(0) translateY(0) scale(1); }
}

@keyframes articleFloat {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(2deg) scale(1.01); }
  50% { transform: rotate(-1deg) scale(0.99); }
  75% { transform: rotate(3deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes teamFloat {
  0% { transform: translateX(0) translateY(0); }
  20% { transform: translateX(10px) translateY(-8px); }
  40% { transform: translateX(20px) translateY(5px); }
  60% { transform: translateX(15px) translateY(-12px); }
  80% { transform: translateX(5px) translateY(3px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes gentlePatterns {
  0% { background-position: 0 0, 0 0, 0 0; }
  25% { background-position: 20px 10px, -10px 15px, 5px -5px; }
  50% { background-position: 40px 0, -20px 30px, 10px -10px; }
  75% { background-position: 20px -10px, -10px 15px, 5px -5px; }
  100% { background-position: 0 0, 0 0, 0 0; }
}


/* Responsive - Mobile Qualiopi Contact Card */
@media (max-width: 768px) {
  .contact-card-qualiopi {
    padding: 30px;
  }

  .contact-info-item {
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .contact-info-item:last-of-type {
    margin-bottom: 25px;
  }
}
