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

body {
  background-color: #0f172a;
  color: #e2e8f0;
  font-family: system-ui, -apple-system, sans-serif;
}

.main-nav {
  background-color: #1e293b;
  padding: 1rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-nav .nav-link {
  text-decoration: none;
  color: #e2e8f0;
  opacity: 0.85;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #22c55e;
  transition: all 0.3s ease;
}
.main-nav .nav-link:hover {
  color: white;
  opacity: 1;
}
.main-nav .nav-link:hover::after {
  width: 100%;
}

.main-nav .nav-link.active {
  color: white;
  font-weight: 600;
}
.main-nav .nav-link.active::after {
  width: 100%;
}

.carousel {
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.accordion {
  max-width: 800px;
  margin: 2rem auto;
}
.accordion .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.accordion .accordion-button {
  background-color: #1e293b;
  color: #e2e8f0;
  font-weight: 500;
}
.accordion .accordion-button:not(.collapsed) {
  background-color: #22c55e;
  color: #0f172a;
}
.accordion .accordion-body {
  background-color: #0f172a;
  color: #cbd5f5;
}

.card {
  background-color: #1e293b;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.card img {
  height: 220px;
  object-fit: cover;
}
.card .card-title {
  font-weight: 600;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .carousel img {
    height: 250px;
  }
}

/*# sourceMappingURL=main.css.map */
