    .info-section {
      background: #f5f5f5;
      padding: 60px 20px;
      font-family: 'Montserrat', sans-serif;
    }

    .info-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .info-title h1 {
      font-size: 48px;
      font-weight: bold;
      color: #000;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    .line {
      width: 60px;
      height: 3px;
      background: #136908;
      margin: 0 auto;
    }

    .cards-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0; 
      margin-bottom: 30px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    /* ===== CARTE CTA  ===== */
    .cta-card {
      background: linear-gradient(135deg, #136908 0%, #0d5206 100%);
      color: white;
      padding: 45px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      height: 100%;
      min-height: 300px;
      position: relative;
      overflow: hidden;
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
      pointer-events: none;
    }


    .cta-card h3 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
      position: relative;
      z-index: 1;
    }

    .cta-card p {
      font-size: 15px;
      opacity: 0.85;
      margin-bottom: 25px;
      color: white;
      position: relative;
      z-index: 1;
      max-width: 90%;
      line-height: 1.6;
    }

    .cta-card .btn-light {
      background: white;
      color: #136908;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      padding: 14px 35px;
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
      font-size: 15px;
      letter-spacing: 0.5px;
    }

    .cta-card .btn-light:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.25);
      background: white;
      color: #136908;
    }

    .cta-card .btn-light i {
      transition: transform 0.3s ease;
    }

    .cta-card .btn-light:hover i {
      transform: translateX(5px);
    }

    /* ===== CARTE SOCIAL MEDIA  ===== */
    .social-card {
      background: white;
      padding: 35px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      min-height: 300px;
      position: relative;
      overflow: hidden;
    }

    /* Effet de fond subtil */
    .social-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(19, 105, 8, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .social-card h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1a1a1a;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social-card h3 i {
      color: #136908;
      font-size: 26px;
    }

    .social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border-radius: 16px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: none;
      position: relative;
    }

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

    .social-btn:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

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

    /* Effet de brillance au survol */
    .social-btn::after {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .social-btn:hover::after {
      opacity: 1;
    }

    /* Couleurs des réseaux sociaux */
    .social-btn.youtube {
      background: #FF0000;
      color: white;
    }

    .social-btn.linkedin {
      background: #0077B5;
      color: white;
    }

    .social-btn.instagram {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: white;
    }

    .social-btn.facebook {
      background: #1877F2;
      color: white;
    }

    .social-btn.tiktok {
      background: #000;
      color: white;
    }

    .social-btn.x {
      background: #000;
      color: white;
    }

    /* Version Footer */
    .version-footer {
      text-align: center;
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid #ddd;
    }

    .version-footer p {
      color: #666;
      font-size: 14px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 20px;
      }

      .cta-card {
        min-height: 220px;
        padding: 35px 25px;
        align-items: center;
        text-align: center;
      }

      .cta-card p {
        max-width: 100%;
      }

      .cta-card h3 {
        font-size: 24px;
      }

      .social-card {
        min-height: 220px;
        padding: 30px 20px;
      }

      .social-btn {
        width: 52px;
        height: 52px;
      }

      .social-btn i {
        font-size: 20px;
      }

      .info-title h1 {
        font-size: 36px;
      }

      /* Séparateur entre les cartes sur mobile */
      .cta-card {
        border-bottom: 3px solid rgba(255,255,255,0.2);
      }
    }

    @media (max-width: 480px) {
      .social-grid {
        gap: 10px;
      }

      .social-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
      }

      .social-btn i {
        font-size: 18px;
      }

      .cta-card .btn-light {
        padding: 12px 28px;
        font-size: 14px;
      }

      .cta-card h3 {
        font-size: 20px;
      }

      .social-card h3 {
        font-size: 18px;
      }
    }