/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6f0;
  color: #333;
}
.hero-banner {
  max-width: 850px;
  margin: 0 auto;
  padding: 30px 16px;
  background: linear-gradient(to right, #fdf6f0, #e6f9f2);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.header p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
}



.pricing-board {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 16px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.pricing-board h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 24px;
  justify-items: center;
}


.pricing-card {
  width: 100%;
  max-width: 380px;   /* wider cards */
  min-height: 400px;  /* taller cards */
  padding: 28px 20px; /* more breathing room */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.pricing-card h3 {
  font-size: 18px;
  color: #3b82f6;
  margin-bottom: 4px;
}

.pricing-card.purple {
  border-top: 4px solid #8b5cf6; /* violet accent */
  background-color: #f5f3ff;     /* soft lavender background */
}

.pricing-card.purple h3 {
  color: #6d28d9;
}


.tagline {
  font-size: 13px;
  color: #777;
  font-style: italic;
  margin-bottom: 8px;
}

.price {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.pricing-card ul li {
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
}

/* Email Button */
.email-btn {
  background-color: #3b82f6;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.email-btn:hover {
  background-color: #2563eb;
}

/* Color accents */
.pricing-card.blue   { border-top: 4px solid #3b82f6; background-color: #eaf4ff; }
.pricing-card.green  { border-top: 4px solid #10b981; background-color: #e6f9f2; }
.pricing-card.orange { border-top: 4px solid #f59e0b; background-color: #fff7e6; }

/* Badge */
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #fff;
  color: #f59e0b;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-board h2 { font-size: 22px; }
  .pricing-card { min-height: 320px; padding: 18px 14px; }
  .pricing-card h3 { font-size: 16px; }
  .price { font-size: 14px; }
  .email-btn { font-size: 12px; padding: 7px 12px; }
}

  /* 2. Pricing Section: Smaller, Separated Cards */
  .pricing-board {
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 10px 0;
  }

  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 45px; /* Large space between cards as requested */
    width: 100%;
  }

  .pricing-card {
    width: 85% !important;
    max-width: 290px; /* SHRUNK: From 320px to 290px for a neater fit */
    min-height: auto; 
    padding: 22px 18px; /* SHRUNK: Reduced padding for a more compact look */
    border-radius: 30px; /* Deeper curves like your photo */
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    margin: 0 auto;
  }

  /* Internal Card Text Scaling */
  .pricing-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .price {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .pricing-card ul li {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .email-btn, .book-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    border-radius: 10px;
  }

  /* 3. About Founder: Compact Fit */
  .about-box {
    width: 85%;
    max-width: 290px;
    margin: 40px auto;
    padding: 25px 15px;
    border-radius: 40px;
  }

  .about-image img {
    width: 150px !important;
    height: 200px !important;
    border-radius: 20px;
  }



