/* ===== Header ===== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #d1e7dd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  color: #0b3d2e;
}

/* ===== Hero Section ===== */
.about-hero {
  background-image: url("/img/banner-300.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.about-hero-overlay {
  background-color: rgba(6, 40, 30, 0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #e6f4ef;
}

/* ===== Responsive Hero ===== */
@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    background-position: center;
  }

  .about-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .about-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh;
    padding: 20px;
  }

  .about-hero-content {
    padding: 0 10px;
  }

  .about-hero-content h1 {
    font-size: 1.6rem;
  }

  .about-hero-content p {
    font-size: 0.95rem;
  }
}

/* ===== CTA Section ===== */
.cta-full {
  width: 100%;
  background-color: #000000;
  padding: 40px 20px;
  text-align: center;
  margin: 0;
  box-shadow: 0 2px 10px rgba(11, 61, 46, 0.25);
}

.cta-full h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-full-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-full-button:hover {
  background-color: #06281e;
  border-color: #06281e;
  color: #ffffff;
}
