
  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --secondary: #10b981;
      --accent: #f59e0b;
      --surface: #ffffff;
      --surface-alt: #f8fafc;
      --text: #1e293b;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: var(--text);
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header */
    header {
      padding: 2rem 0;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .logo {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .logo svg {
      width: 3rem;
      height: 3rem;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .tagline {
      font-size: 1.5rem;
      opacity: 0.9;
      margin-bottom: 1rem;
    }

    .hero-description {
      font-size: 1.1rem;
      opacity: 0.8;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Navigation */
    .nav-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }

    .nav-tab {
      padding: 0.75rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid transparent;
      border-radius: 50px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .nav-tab:hover, .nav-tab.active {
      background: white;
      color: var(--primary);
      transform: translateY(-2px);
    }

    /* Cards */
    .card {
      background: var(--surface);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-lg);
      margin: 2rem 0;
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }

    .card h2 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      font-size: 2rem;
      font-weight: 700;
    }

    /* Forms */
    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-input, .form-select {
      padding: 0.75rem 1rem;
      border: 2px solid var(--border);
      border-radius: 0.5rem;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: var(--surface);
    }

    .form-input:focus, .form-select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    }

    label {
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    /* Buttons */
    .btn {
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
      background: var(--surface);
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: white;
    }

    .button-group {
      display: flex;
      gap: 1rem;
      margin: 2rem 0;
      flex-wrap: wrap;
    }

    /* Table */
    .table-responsive {
      overflow-x: auto;
      margin: 2rem 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: var(--surface);
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    th, td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    th {
      background: var(--surface-alt);
      font-weight: 600;
      color: var(--primary);
    }

    /* Features Section */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      width: 4rem;
      height: 4rem;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: white;
    }

    .feature-card h3 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.8);
    }

    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin: 2rem 0;
    }

    .about-text h3 {
      color: var(--secondary);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .about-image {
      background: var(--gradient);
      border-radius: 1rem;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 4rem;
    }

    /* Contact Section */
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-form .form-group {
      margin-bottom: 1.5rem;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
      font-family: inherit;
    }

    /* Footer */
    footer {
      margin-top: 4rem;
      padding: 3rem 0;
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-links {
      margin-top: 1rem;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }


    .footer a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
    }
    .footer-links
    /* Cookie Banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 1rem;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      box-shadow: var(--shadow-lg);
      z-index: 1000;
    }

    .cookie-banner p {
      margin: 0;
      flex: 1;
    }

    .cookie-banner a {
      color: var(--primary);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .logo {
        font-size: 2rem;
      }
      header {
        padding: 0px;
        margin: 0px;
      }
      .features-grid {
        padding: 0px;
        margin: 0px;
      }
      .tagline {
        font-size: 1.2rem;
      }

      .about-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .button-group {
        flex-direction: column;
      }

      .cookie-banner {
        flex-direction: column;
        text-align: center;
      }
    }

    /* Animations */
    .fade-in {
      animation: fadeIn 0.8s ease-out;
    }
   

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Hidden sections */
    .section {
      display: none;
    }

    .section.active {
      display: block;
      animation: fadeIn 0.5s ease-out;
    }
/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 2rem);
  background: var(--surface, #fff);
  color: var(--text, #333);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-size: 0.95rem;
  line-height: 1.5;
  z-index: 1000;
  animation: slideUp 0.5s ease forwards;
}

/* Texte */
.cookie-banner p {
  margin: 0;
  font-weight: 400;
  color: var(--text, #333);
}

/* Boutons */
.cookie-banner button {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.cookie-banner #cookie-accept {
  background: var(--primary, #6366f1);
  color: #fff;
}

.cookie-banner #cookie-accept:hover {
  background: #4f46e5;
}

.cookie-banner #cookie-reject {
  background: var(--surface-alt, #f3f4f6);
  color: var(--text, #333);
}

.cookie-banner #cookie-reject:hover {
  background: #e5e7eb;
}

/* Animation apparition */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .cookie-banner {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }
  .cookie-banner button {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
