body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.logo-text {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
}

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 149, 217, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  flex-direction: column;
}

.hero-overlay h2 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-overlay p {
  font-size: 1.1rem;
}

.fitur-container img {
  display: block;
  margin: 0 auto 1rem;
}

.footer-container {
  padding: 20px;
  background-color: #0073a8;
  color: white;
}

.footer-container a {
  color: white;
  text-decoration: none;
}

.footer-container a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero-overlay {
    position: relative;
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }

  .hero-image {
    height: 250px;
  }

  .hero-overlay h2 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

 
}

@media (max-width: 576px) {
  .hero-overlay {
    padding: 30px 15px;
  }

  .hero-overlay h2 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }
}
