body {
  font-family: Arial, sans-serif;
  padding-top: 80px;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  background: #2c2f3a;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.running-text {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.running-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.navbar {
  background: #fff;
  padding: 10px 0;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 40px;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  width: 36px;
}

.hero {
  margin-top: 80px;
}

.carousel-item {
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(60%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-content p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
}

.img-cover {
  object-fit: cover;
}

.btn-custom {
  border-radius: 30px;
  padding: 10px 20px;
  margin-right: 10px;
}

.btn-light {
  background: #fff;
  color: #000;
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.page-section {
  padding-top: 130px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.map-wrapper iframe {
  filter: grayscale(20%) contrast(95%);
}

.news-section {
  padding-top: 130px;
  margin-bottom: 80px;
}

.news-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.check {
  color: #f4c542;
  font-size: 18px;
  margin-right: 10px;
}

.custom-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 260px;
}

.custom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 1, 83, 0.6), transparent);
}

.btn-nav {
  width: 38px;
  height: 38px;
  background: #f4c542;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-nav i {
  font-size: 16px;
}

.form-control::placeholder {
  font-size: 12px;
  opacity: 0.7;
}

.news-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.news-img {
  transition: transform 0.3s ease;
}

.news-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-content {
    left: 8%;
    max-width: 80%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .page-section .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .page-section h2,
  .page-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-section .col-md-4 {
    text-align: center;
  }

  .page-section .col-md-4 .d-flex {
    justify-content: center;
  }

  .about-section .col-md-6:last-child {
    margin-top: 25px;
  }

  .about-section h2 {
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .about-section p {
    margin-bottom: 15px;
  }

  .about-section ul li {
    margin-bottom: 8px;
  }

  .contact-section .row.align-items-center {
    gap: 12px;
  }

  .news-section .col-md-4 {
    margin-bottom: 10px;
  }

  .news-section h6 {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .news-section p {
    margin-bottom: 6px;
  }

  .news-section a {
    display: inline-block;
    margin-top: 6px;
  }
}

@media (max-width: 576px) {
  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-content .mt-3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-custom {
    width: 100%;
    margin-right: 0;
  }

  .hero {
    padding: 0 10px;
  }
}