  :root {
      --color-navy: #0a192f;
      --color-navy-light: #112240;
      --color-gold: #d44e37;
      --color-gold-hover: #ba4530;
      --color-white: #ffffff;
      --color-gray-light: #f4f4f4;
      --color-text: #333333;
      --color-text-muted: #666666;
      --spacing-section: 80px;
      --border-radius: 8px;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

      --color-bg-light: #f4f4f4;
      --color-bg-dark: #0a192f;
      --color-text-dark: #0a192f;
      --color-text-light: #f4f4f4;
  }

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

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

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--color-navy);
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: 0.3s;
  }

  ul {
      list-style: none;
  }


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

  .btn {
      display: inline-block;
      background-color: var(--color-gold);
      color: var(--color-white);
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
  }

  .btn:hover {
      background-color: var(--color-gold-hover);
      transform: translateY(-2px);
  }

  .section-title {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-title h2 {
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
  }

  .section-title p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
  }

  .highlight-gold {
      color: var(--color-gold);
  }


  header {
      background-color: var(--color-navy);
      color: var(--color-white);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
  }

  .nav-links {
      display: flex;
      gap: 30px;
  }

  .nav-links a {
      color: var(--color-white);
      font-size: 0.95rem;
      font-weight: 500;
  }

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

  .burger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
  }


  #hero {
      background-color: var(--color-navy);
      color: var(--color-white);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
  }

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

  .hero-text {
      flex: 1;
  }

  .hero-text h1 {
      font-size: 3rem;
      color: var(--color-white);
      line-height: 1.2;
      margin-bottom: 20px;
  }

  .hero-text p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
  }

  .hero-disclaimer {
      margin-top: 20px;
      font-size: 0.8rem;
      opacity: 0.7;
      border-left: 3px solid var(--color-gold);
      padding-left: 10px;
  }

  .hero-image {
      flex: 1;
      border-radius: var(--border-radius);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  .hero-image img {
      width: 100%;
  }



  #about {
      padding: var(--spacing-section) 0;
      background-color: var(--color-white);
  }

  .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
  }

  .about-text p {
      margin-bottom: 20px;
      color: var(--color-text-muted);
      text-align: justify;
  }


  #services {
      padding: var(--spacing-section) 0;
      background-color: var(--color-gray-light);
  }

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

  .service-card {
      background: var(--color-white);
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      transition: 0.3s;
      text-align: center;
  }

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

  .service-icon {
      font-size: 2.5rem;
      color: var(--color-gold);
      margin-bottom: 20px;
  }

  .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
  }

  .service-card p {
      font-size: 0.9rem;
      color: var(--color-text-muted);
  }


  #why-us {
      padding: var(--spacing-section) 0;
  }

  .why-us-content {
      columns: 2;
      column-gap: 50px;
  }

  .why-us-content p {
      margin-bottom: 20px;
      text-align: justify;
  }


  #features {
      padding: var(--spacing-section) 0;
      background-color: var(--color-navy);
      color: var(--color-white);
  }

  #features h2 {
      color: var(--color-white);
  }

  #features .section-title p {
      color: rgba(255, 255, 255, 0.7);
  }

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

  .feature-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
  }

  .feature-item i {
      color: var(--color-gold);
      font-size: 1.5rem;
      margin-top: 5px;
  }

  .feature-text h4 {
      color: var(--color-white);
      font-size: 1.1rem;
      margin-bottom: 10px;
  }

  .feature-text p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
  }


  #recommended {
      padding: var(--spacing-section) 0;
      background-color: var(--color-gray-light);
  }

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

  .bookmaker-card {
      background: var(--color-white);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
  }

  .bookmaker-logo {
      height: 150px;
      background-color: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #888;
      font-weight: bold;
      font-size: 1.2rem;
  }

  .bookmaker-logo img {
      padding: 20px;
      width: 100%;
  }

  .bookmaker-body {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
  }

  .bookmaker-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
  }

  .rating {
      color: var(--color-gold);
      font-size: 0.9rem;
  }

  .bookmaker-desc {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin-bottom: 20px;
      flex: 1;
  }

  .bookmaker-legal {
      font-size: 0.7rem;
      color: #999;
      margin-top: 15px;
      border-top: 1px solid #eee;
      padding-top: 10px;
  }

  .bookmaker-btn {
      width: 100%;
      text-align: center;
      background-color: transparent;
      border: 2px solid var(--color-navy);
      color: var(--color-navy);
      padding: 10px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
  }

  .bookmaker-btn:hover {
      background-color: var(--color-navy);
      color: var(--color-white);
  }

  .disclaimer-box {
      margin-top: 40px;
      text-align: center;
      font-size: 0.8rem;
      color: var(--color-text-muted);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }


  #how-it-works {
      padding: var(--spacing-section) 0;
  }

  .steps-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  .step-item {
      flex: 1;
      min-width: 220px;
      text-align: center;
      padding: 20px;
  }

  .step-number {
      width: 50px;
      height: 50px;
      background-color: var(--color-navy);
      color: var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: bold;
      margin: 0 auto 20px;
  }

  .step-item h4 {
      font-size: 1.1rem;
      margin-bottom: 10px;
  }

  .step-item p {
      font-size: 0.9rem;
      color: var(--color-text-muted);
  }


  #responsible {
      padding: var(--spacing-section) 0;
      background-color: #fff3f3;
      border-left: 5px solid #e74c3c;
  }

  .responsible-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .warning-box {
      border: 2px solid #e74c3c;
      padding: 20px;
      border-radius: var(--border-radius);
      text-align: center;
      margin-top: 30px;
      background-color: var(--color-white);
  }

  .warning-box h4 {
      color: #e74c3c;
      font-size: 1.5rem;
      margin-bottom: 10px;
  }


  #faq {
      padding: var(--spacing-section) 0;
  }

  .accordion {
      max-width: 800px;
      margin: 0 auto;
  }

  .accordion-item {
      border-bottom: 1px solid #ddd;
  }

  .accordion-header {
      width: 100%;
      padding: 20px;
      text-align: left;
      background: none;
      border: none;
      outline: none;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      color: var(--color-navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .accordion-header:hover {
      background-color: #f9f9f9;
  }

  .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 20px;
  }

  .accordion-content p {
      padding-bottom: 20px;
      color: var(--color-text-muted);
      font-size: 0.95rem;
  }

  .accordion-icon {
      transition: transform 0.3s;
  }

  .active .accordion-icon {
      transform: rotate(180deg);
  }


  #contact {
      padding: var(--spacing-section) 0;
      background-color: var(--color-gray-light);
  }

  .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
  }

  .contact-info {
      flex: 1;
      min-width: 300px;
  }

  .contact-info-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
  }

  .contact-info-item i {
      width: 40px;
      height: 40px;
      background-color: var(--color-gold);
      color: var(--color-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
  }

  .contact-form {
      flex: 1;
      min-width: 300px;
      background: var(--color-white);
      padding: 30px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
  }

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

  .form-group label {
      display: block;
      margin-bottom: 5px;
      font-weight: 600;
      font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: inherit;
  }

  .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--color-text-muted);
  }

  .form-check input {
      width: auto;
      margin-top: 4px;
  }

  .privacy-notice {
      font-size: 0.75rem;
      color: #999;
      margin-top: 15px;
      text-align: center;
  }


  footer {
      background-color: var(--color-navy);
      color: var(--color-white);
      padding: 60px 0 20px;
  }

  .footer-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 40px;
  }

  .footer-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-bottom: 30px;
      flex-wrap: wrap;
  }

  .footer-logos img {
      background: white;
      padding: 20px;
      height: 100px;
      border-radius: 10px;
  }

  .footer-col h3 {
      color: var(--color-gold);
      font-size: 1.2rem;
      margin-bottom: 20px;
  }

  .footer-col p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
  }

  .footer-links a:hover {
      color: var(--color-gold);
      padding-left: 5px;
  }

  .legal-disclaimer {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      text-align: center;
      max-width: 900px;
      margin: 0 auto 20px;
      line-height: 1.5;
  }

  .copyright {
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
  }


  @media (max-width: 768px) {
      .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 70px;
          right: 0;
          background-color: var(--color-navy);
          width: 100%;
          padding: 20px;
          text-align: center;
      }

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

      .burger {
          display: block;
      }

      .hero-content {
          flex-direction: column;
      }

      .hero-image {
          width: 100%;
          height: 250px;
      }

      .why-us-content {
          columns: 1;
      }

      h1 {
          font-size: 2.2rem;
      }
  }

  .age-gate-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 25, 47, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
  }

  .age-gate-modal {
      background: var(--color-bg-light);
      color: var(--color-text-dark);
      max-width: 520px;
      width: 90%;
      padding: 2rem 2.5rem;
      border-radius: 12px;
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  }

  .age-gate-modal h2 {
      margin-top: 0;
      margin-bottom: 1rem;
      font-size: 1.6rem;
      color: var(--color-text-dark);
  }

  .age-gate-modal p {
      margin-bottom: 1.5rem;
      line-height: 1.5;
  }

  .age-gate-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
  }

  .btn-primary {
      background: var(--color-bg-dark);
      color: var(--color-text-light);
      border: none;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
  }

  .btn-primary:hover {
      opacity: 0.9;
  }

  .btn-secondary {
      background: transparent;
      color: var(--color-bg-dark);
      border: 1px solid var(--color-bg-dark);
      padding: 0.65rem 1.3rem;
      border-radius: 999px;
      font-weight: 500;
      font-size: 0.95rem;
  }

  .btn-secondary:hover {
      background: rgba(10, 25, 47, 0.06);
  }

  .link-btn {
      background: none;
      border: none;
      color: var(--color-bg-dark);
      text-decoration: underline;
      font-size: 0.9rem;
      padding: 0.25rem 0.5rem;
  }


  .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--color-bg-light);
      color: var(--color-text-dark);
      box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
      padding: 1.2rem 1.5rem;
      z-index: 9998;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .cookie-content {
      flex: 1 1 260px;
  }

  .cookie-content h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
  }

  .cookie-content p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.5;
  }

  .cookie-actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      justify-content: center;
      align-items: flex-end;
  }

  .cookie-actions .btn-primary,
  .cookie-actions .btn-secondary {
      width: 180px;
      max-width: 100%;
  }


  .cookie-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 25, 47, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
  }

  .cookie-modal {
      background: var(--color-bg-light);
      color: var(--color-text-dark);
      max-width: 640px;
      width: 90%;
      padding: 2rem 2.5rem;
      border-radius: 14px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      max-height: 90vh;
      overflow-y: auto;
  }

  .cookie-modal h3 {
      margin-top: 0;
      margin-bottom: 0.75rem;
  }

  .cookie-modal p {
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .cookie-category {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(10, 25, 47, 0.15);
  }

  .cookie-category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.4rem;
  }

  .cookie-category-header label,
  .cookie-category-header span {
      font-weight: 600;
  }

  .cookie-category p {
      font-size: 0.88rem;
      margin: 0;
  }

  .badge {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--color-bg-dark);
      color: var(--color-bg-dark);
  }

  .cookie-category input[type="checkbox"] {
      width: 18px;
      height: 18px;
  }

  .cookie-modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
  }


  .cookie-reopen-btn {
      position: fixed;
      bottom: 1rem;
      left: 1rem;
      background: var(--color-bg-dark);
      color: var(--color-text-light);
      border: none;
      border-radius: 999px;
      padding: 0.4rem 1rem;
      font-size: 0.85rem;
      cursor: pointer;
      z-index: 9997;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  }

  .cookie-reopen-btn:hover {
      opacity: 0.9;
  }


  .hidden {
      display: none !important;
  }


  @media (max-width: 640px) {
      .cookie-banner {
          flex-direction: column;
          align-items: stretch;
      }

      .cookie-actions {
          align-items: stretch;
      }

      .cookie-actions .btn-primary,
      .cookie-actions .btn-secondary {
          width: 100%;
      }

      .age-gate-modal,
      .cookie-modal {
          padding: 1.5rem 1.25rem;
      }
  }

  .legal-page-wrapper {
      padding: var(--spacing-section) 0;
      min-height: 80vh;
  }

  .legal-container {
      background-color: var(--color-white);
      padding: 50px;
      border-radius: var(--border-radius);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      max-width: 900px;
      margin: 0 auto;
  }

  .legal-header {
      border-bottom: 2px solid var(--color-gray-light);
      padding-bottom: 20px;
      margin-bottom: 40px;
  }

  .legal-header h1 {
      font-size: 2.2rem;
  }

  .last-updated {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      font-style: italic;
  }

  .legal-content h2 {
      font-size: 1.4rem;
      margin-top: 30px;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
  }

  .legal-content p {
      margin-bottom: 15px;
      color: var(--color-text-muted);
      text-align: justify;
  }

  .legal-content ul {
      margin-bottom: 20px;
      padding-left: 20px;
      color: var(--color-text-muted);
  }

  .legal-content li {
      margin-bottom: 8px;
  }

  .legal-content strong {
      color: var(--color-navy);
  }


  @media (max-width: 768px) {
      .legal-container {
          padding: 30px 20px;
      }

      .legal-header h1 {
          font-size: 1.8rem;
      }
  }

  .cookie-table th,
  .cookie-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
  }

  .cookie-table th {
      background-color: var(--color-navy);
      color: var(--color-white);
  }

  @media (max-width: 768px) {

      .cookie-table,
      .cookie-table thead,
      .cookie-table tbody,
      .cookie-table th,
      .cookie-table td,
      .cookie-table tr {
          display: block;
      }

      .cookie-table th {
          position: absolute;
          top: -9999px;
          left: -9999px;
      }

      .cookie-table td {
          border: none;
          border-bottom: 1px solid #eee;
          position: relative;
          padding-left: 50%;
      }

      .cookie-table td:before {
          position: absolute;
          top: 12px;
          left: 12px;
          width: 45%;
          padding-right: 10px;
          white-space: nowrap;
          font-weight: bold;
          color: var(--color-navy);
      }

      .cookie-table td:nth-of-type(1):before {
          content: "Nom";
      }

      .cookie-table td:nth-of-type(2):before {
          content: "Finalité";
      }

      .cookie-table td:nth-of-type(3):before {
          content: "Durée";
      }
  }

  .info-box {
      background-color: #eef5ff;
      border-left: 4px solid var(--color-navy);
      padding: 15px;
      margin: 20px 0;
      font-size: 0.95rem;
  }