* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #333;
  color: white;
  height: 70px;
  flex-wrap: wrap;
}

.nav-brand a {
  font-size: 2em;
  text-decoration: none;
  color: #ffffff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  margin-left: 10px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #f0a500;
}

.nav-menu .dropdown {
  cursor: pointer;
}

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  padding: 10px 0;
  margin: 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .navbar .nav-menu {
    flex-direction: column;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #000;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #ff6b00;
}

/* Carousel */
.carousel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 3% 12%;
}

.carousel-wrapper {
  text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 10px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}


.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #f8f8f8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1,
h2 {
  font-size: 2em;
}

.section {
  margin-bottom: 60px;
}

.section-content {
  margin-top: 20px;
}

.section-content p {
  line-height: 1.6;
  margin: 10px 0;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .section-content {
    margin-left: 0;
  }
}

.footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer h4 {
  margin-bottom: 15px;
  color: #ff6b00;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ffffff;
}

.footer ul li a:hover {
  text-decoration: underline;
  color: #f0a500;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}  