
    :root {
      --light: #F8F8F8;
      --sand: #E5E0D8;
      --gold: #D1A980;
      --sage: #748873;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--light);
      color: #333;
      line-height: 1.6;
    }
    /* NAVBAR */
    nav {
      background-color: var(--gold);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    nav .logo {
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      margin: 0;
      padding: 0;
    }
    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    nav ul li a:hover {
      color: var(--sand);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      background: white;
      height: 3px;
      width: 25px;
      margin: 4px 0;
      border-radius: 5px;
    }
    @media (max-width: 768px) {
      nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--gold);
        flex-direction: column;
        width: 200px;
        display: none;
      }
      nav ul.show {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
    }
    /* HEADER */
    header {
      background-color: var(--gold);
      color: white;
      text-align: center;
      padding: 40px 20px;
    }
    header h1 {
      margin: 0;
      font-size: 2.2rem;
    }
    /* TOUR GRID */
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .tour-card {
      background-color: var(--sand);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .tour-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .tour-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .tour-card:hover img {
      transform: scale(1.05);
    }
    .tour-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .tour-card-content h2 {
      color: var(--sage);
      margin: 0 0 10px;
      font-size: 1.3rem;
    }
    .tour-card-content p {
      flex-grow: 1;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    .tour-card-content a {
      background-color: var(--gold);
      color: white;
      text-decoration: none;
      text-align: center;
      padding: 10px 15px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .tour-card-content a:hover {
      background-color: var(--sage);
    }
    /* FOOTER */
    footer {
      background-color: var(--sage);
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
    }
  