/* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

/* ====== Header ====== */
header {
  background: #fbe641;
  padding: 15px 30px;
}

header .logo img {
  height: 50px;
}

/* ====== Hero Section ====== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 8%;
  align-items: center;
  background: linear-gradient(to right, #fff, #f9f9f9);
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 20px;
}

.hero-paragraph {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #555;
}

/* Membership Info */
.membership-info {
  margin-top: 30px;
}

.membership-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #444;
}

.membership-info p {
  margin-bottom: 20px;
  color: #555;
}

/* Packages Grid */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.package {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.package h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #7600cc;
}

.package p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #444;
}

/* Hero Image */
.hero-image {
  text-align: center;
}

.hero-image h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.hero-image img {
  width: 220px;
  margin: 20px 0;
}

.hero-image p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #555;
}

/* ====== Footer ====== */
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
