
body {
  background: #FFF9E5;
  color: #223;
  font-family: "Times New Roman", TimesNewRoman, Times, Baskerville, Georgia, serif;
  margin: 0;
  padding: 0;
}

/* HERO SECTION: Blue only */
.hero-section {
  background: linear-gradient(90deg, #184785 0%, #2979ff 100%);
  color: #fff;
  text-align: center;
  padding: 150px 50px 20px 50px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.25rem;
  color: #e3e8f7;
  margin-bottom: 30px;
}
.hero-section .cta-primary {
  background: #fff;
  color: #184785;
  border-radius: 40px;
  font-weight: bold;
  padding: 16px 36px;
  margin-top: 22px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 10px #18478533;
}
.hero-section .cta-primary:hover {
  background: #2979ff;
  color: #fff;
}

/* SECTION BACKGROUNDS: Cream for all */
section:not(.hero-section), footer {
  background: #FFF9E5;
  color: #223;
  padding: 60px 0;
  text-align: center;
}

/* Section Headings */
section h2 {
  color: #7B4019;
  font-size: 2.1rem;
  margin-bottom: 28px;
  font-weight: bold;
}

/* Pricing Cards */
.pricing-table-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px #d1d5db33;
  width: 340px;
  max-width: 95vw;
  padding: 56px 30px 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.pricing-card .badge {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb347;
  color: #fff;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 18px;
  font-size: 1rem;
  box-shadow: 0 4px 12px #ffb34733;
}
.pricing-card h3 {
  color: #24a47a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-card .price {
  color: #ffb347;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.pricing-card .desc {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  text-align: left;
  width: 100%;
}
.pricing-card ul li {
  font-size: 1.13rem;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #223;
}
.pricing-card ul li:before {
  content: "✔";
  color: #24a47a;
  position: absolute;
  left: 0;
  top: 0;
}
.pricing-card .cta-secondary {
  background: #24a47a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.pricing-card .cta-secondary:hover {
  background: #ffb347;
  color: #fff;
}

/* Comparison Table */
.comparison-table-section h2 { color: #7B4019; }
.comparison-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  border-collapse: collapse;
  font-size: 1.05rem;
  color: #223;
}
.comparison-table th, .comparison-table td {
  padding: 16px 8px;
  border-bottom: 1px solid #ffb34755;
  text-align: center;
}
.comparison-table th {
  background: #24a47a;
  color: #fff;
  font-weight: bold;
}
.comparison-table td {
  background: #fff;
}
.comparison-table tr:nth-child(even) td {
  background: #FFF9E5;
}
.comparison-table .check {
  color: #24a47a;
  font-size: 1.3rem;
}
.comparison-table .cross {
  color: #ffb347;
  font-size: 1.3rem;
}

/* FAQ Section */
.faq-section h2 { 
  color: #ffb347; 
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left; /* keep container left aligned */
}

.faq-item {
  margin-bottom: 28px;
  font-size: 24px;
  /* justify-content applies only to flex containers, so remove it or make .faq-item flex */
  /* If you want flex layout, do: display: flex; flex-direction: column; */
}

/* Justify the question text */
.faq-item h4 {
  font-size: 24px;
  color: #24a47a;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: justify;   /* Added */
}

/* Justify the answer text */
.faq-item p {
  color: #223;
  font-size: 24px;
  margin: 0;
  text-align: justify;   /* Added */
}

/* Testimonials Section */
.testimonials-section h2 { color: #24a47a; }
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px #ffb34733;
  padding: 32px 24px;
  max-width: 380px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #223;
  margin-bottom: 18px;
}
.testimonial-card .author {
  font-weight: bold;
  color: #ffb347;
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section h2 { color: #24a47a; }
.contact-section p { font-size: 1.08rem; margin-bottom: 24px; }
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px #24a47a11;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input, .contact-form textarea {
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  padding: 12px;
  font-size: 1.05rem;
  width: 100%;
  background: #FFF9E5;
  color: #223;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid #24a47a;
}
.contact-form button {
  background: #ffb347;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.contact-form button:hover {
  background: #24a47a;
  color: #fff;
}

/* Footer */
footer {
  background: #FFF9E5;
  color: #223;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-table-wrapper, .testimonials-list {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .hero-section h1 { font-size: 2rem; }
  .pricing-card, .testimonial-card { width: 98vw; padding: 20px 8px; }
  .comparison-table th, .comparison-table td { font-size: 0.95rem; padding: 10px 2px; }
}