* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

/* ============ HEADER ============ */
.header {
  background: #ffffff;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.header img {
  max-height: 36px;
}


/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 85vh;
  background-image: url("../../assets/images/banner-img.jpg"); /* CHANGE IMAGE PER PAGE */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

}

/* GLASS BOX */
.hero-box {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 70%;
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
}

.hero-box h1 {
  font-size: 46px;
  margin-bottom: 12px;
}

.hero-box p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #eaeaea;
}

.hero-box a {
  display: inline-block;
  padding: 14px 36px;
  background: #0b3a2e;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
}

/* ============ VALUE CONTENT (REQUIRED) ============ */
.content {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.section p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* INFO CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 10px;
}

/* ============ FOOTER (REQUIRED) ============ */
.footer {
  background: #0b3a2e;
  color: #ccc;
  padding: 10px 0px 0px 0px;
  justify-content: center;
  display: flex;

}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  justify-content: center;
  font-size: 13px;
}

.footer p {
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
    justify-content: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-box {
    padding: 40px 25px;
  }

  .hero-box h1 {
    font-size: 30px;
  }

  .hero-box p {
    font-size: 16px;
  }
}