@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fc;
  color: #222;
  line-height: 1.8;
}

header {
  text-align: center;
  padding: 2rem 1rem 1rem;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 6px solid #00bcd4;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

main {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1rem;
}

section {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 6px solid #00bcd4;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.07);
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-3px);
}

h2 {
  font-size: 1.6rem;
  color: #0077b6;
  margin-bottom: 0.6rem;
}

section p {
  font-size: 1rem;
  color: #444;
}

/* Call to Action */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background-color: #ffffff;
  color: #0097a7;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background-color: #e0f7fa;
  color: #006064;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  section {
    padding: 1rem 1.2rem;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 1rem;
  }
}
