* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: #f9f9f9;
      color: #333;
      font-size: 1.1rem;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: rgb(159, 167, 243);
      border-bottom: 1px solid #e0e0e0;
    }

    .logo {
      font-size: 2.6rem;
      color: #004c99; 
      font-weight: 700;
      text-decoration: none;
    }

    .header-right {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-size: 1.1rem;
    }

    .header-right button {
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .header-right button:hover {
      transform: scale(1.05);
    }

.nav a {
  margin-left: 15px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
}

.nav a.active {
  background-color: #fff;
  border: 1px solid #000;
}

main {
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.lab-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.lab-card h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.lab-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.lab-card ul li {
  margin: 5px 0;
}

.lab-card button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

footer{
  background-color: #f1f1f1; 
  padding: 20px 0; 
  text-align: center; 
  margin-top: 40px;
}
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: #f9f9f9;
      color: #333;
      font-size: 1.1rem;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: rgb(159, 167, 243);
      border-bottom: 1px solid #e0e0e0;
    }

    .logo {
      font-size: 2.6rem;
      color: #004c99; 
      font-weight: 700;
      text-decoration: none;
    }

    .header-right {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-size: 1.1rem;
    }

    .header-right button {
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .header-right button:hover {
      transform: scale(1.05);
    }

    .btn-red {
      background-color: rgb;
      color: white;
    }
    .btn-red:hover {
      background-color: rgb(159, 167, 243);
    }

    .btn-outline {
      background-color: white;
      border: 1px solid #ccc;
    }
    .btn-outline:hover {
      background-color: #f0f0f0;
    }

    .search-section {
      padding: 1rem 2rem;
      background-color: white;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-bottom: 1px solid #eee;
      font-size: 1.1rem;
    }

    .search-controls {
      display: flex;
      gap: 1rem;
    }

    select, input[type="text"] {
      padding: 0.8rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1.1rem;
      flex: 1;
    }

    .events-section {
      padding: 2rem;
      font-size: 1.1rem;
    }

    .events-section h2 {
      margin-bottom: 1.5rem;
      font-weight: 600;
      font-size: 1.5rem;
    }

    .event-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    

    

    .event-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .event-card h3 {
      padding: 1rem;
      font-size: 1.3rem;
    }

    .event-card p {
      padding: 0 1rem 0.5rem;
      font-size: 1.05rem;
    }

    .event-card .price {
      padding: 0 1rem 1rem;
      font-weight: 700;
      color: #e53935;
    }

    .event-card .date, .location {
      color: #666;
    }

    .event-link {
  text-decoration: none;
  color: inherit;
}

.event-card {
  cursor: pointer;
  transition: transform 0.2s ease;

}

.event-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

footer{
  background-color: #f1f1f1; 
  padding: 20px 0; 
  text-align: center; 
  margin-top: 40px;
}

    