:root {
  --main-gradient: linear-gradient(135deg, #134e5e, #71b280);
  --primary-dark: #134e5e;
  --primary-light: #71b280;
}


.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--main-gradient);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  height: 50px;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
}

/* HERO */
.hero {
  height: 60vh;
  background: var(--main-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Center the button */
.btn-primary {
  display: block;
  margin: 40px auto; /* centers horizontally and adds spacing from other sections */
  padding: 15px 35px; /* button size */
  font-size: 1.2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #1e90ff, #00bfff); /* nice gradient */
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(90deg, #00bfff, #1e90ff);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 55px 10%;
  background: #f8fafc;
}

.benefit-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #134e5e;
}

.benefit-card p {
  font-size: 15px;
  color: #555;
}

.feature h3 {
  margin-bottom: 10px;
}


.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.payment-logos img {
  height: 40px;
  object-fit: contain;
  transition: 0.3s ease;
}

.payment-logos img:hover {
  transform: scale(1.08)}
/* CARDS */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer .price {
  font-weight: bold;
  color: #134e5e;
}

.card button {
  background: #134e5e;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--main-gradient);
  color: white;
  text-align: center;
  padding: 20px 20px;
} 