body {
      background-color: #113D4E;
      color: #F5F5F5;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    header {
      background-color: #124153;
      padding: 40px 0;
      text-align: center;
    }

    header h1 {
      color: white;
      margin-bottom: 15px;
    }

    nav a {
      color: #cce7f4;
      text-decoration: none;
      margin: 0 15px;
      font-weight: 600;
      transition: color 0.3s;
    }

    nav a:hover {
      color: white;
    }

    .horaires-section {
      max-width: 800px;
      margin: 80px auto;
      background-color: #17576E;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
    }

    .horaires-section h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #fff;
    }

    table {
      width: 100%;
      color: #fff;
    }

    table th, table td {
      padding: 12px;
      text-align: center;
    }

    table tr:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s;
    }

    hr {
      margin: 80px auto 40px;
      border-top: 2px solid #5e7c88;
      width: 60%;
    }

    h3 {
      text-align: center;
      color: #bbbbbb;
    }

    footer {
      background-color: #292B38;
      padding: 50px 20px;
      color: #ccc;
      margin-top: 100px;
    }

    footer h2 {
      text-align: center;
      color: #1879b9;
      margin-bottom: 25px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .footer-links a {
      color: #5c74ff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      text-align: center;
      font-size: 14px;
      color: #fff;
    }

    @media (max-width: 768px) {
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
      }
    }