@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f6fa;
}




/* HERO */
.hero {
  height: 55vh;
  background: url("./ab1.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  color: #fff;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin-top: 10px;
}

/* ACCOUNT TYPES */
.types-section {
  padding: 80px 5%;
  text-align: center;
}

.types-section h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.type-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.type-card:hover {
  transform: translateY(-8px);
}

.type-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.type-card ul {
  margin-top: 10px;
  padding-left: 18px;
  text-align: left;
}

.btn-primary {
  padding: 10px 28px;
  margin-top: 15px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* BENEFITS SECTION */
.benefits {
  background: #eef3fa;
  padding: 80px 5%;
  text-align: center;
}

.benefits h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-card img {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  background: #001f3f;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 26px;
  }
}
