/* ===== Global Styles ===== */
body {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background: #f9fbfd;
}

h1, h2 {
  color: #006669;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  font-size: 1.05rem;

}

/* ===== Header ===== */
header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 0 0 20px 20px;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

header img {
  max-width: 80%;   /* 👈 reduced size */
  width: 90%;
  border-radius: 16px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

header p {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto;
  color: #374151;
}

/* ===== Main Content ===== */
main {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

section {
  background: #fff;
  padding: 35px;
  margin-bottom: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

section:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

ul {
  padding-left: 25px;
  margin-top: 12px;
}

ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  position: relative;
}

/* Add a modern bullet */
/* ===== Call to Action ===== */
#cta {
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  border-radius: 16px;
}

#cta h2 {
  color: #fff;
  font-size: 1.8rem;
}

#cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 10px auto;
}

/* ===== Responsive YouTube Iframe (if added later) ===== */
.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* ===== Media Queries ===== */
@media (max-width: 900px) {
  header h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  header {
    padding: 30px 15px;
  }

  header h1 {
    font-size: 1.5rem;
    padding: 0;
    margin-top: 100px;
  }

  header img {
    max-width: 320px;   /* 👈 even smaller for mobile */
  }

  section {
    padding: 22px;
  }

  #cta h2 {
    font-size: 1.5rem;
  }
}
