/* ================================
   Simple Mama Homeschool Planner
   style.css
   ================================ */

/* ----- Root theme variables ----- */
:root {
  --sage: #8B9C81;
  --forest: #4F5D45;
  --mauve: #A7746E;
  --beige: #f8f4ef;
  --ink: #2F2F2F;
  --muted: #6e6e6e;
  --radius: 14px;
  --shadow: 0 10px 20px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--beige);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.muted { color: var(--muted); }
.center { text-align: center; }
.lead { font-size: 1.125rem; color: var(--ink); }

/* ----- Header Clean Modern (Nunito) ----- */
.site-header {
  background: #f8f5ef; /* soft cream like main page */
  border-bottom: 1px solid rgba(79, 93, 69, 0.08);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Nunito', sans-serif;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand area */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand .logo {
  height: 44px;
  width: auto;
  margin-right: 10px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #4F5D45;
  letter-spacing: 0.2px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: #3b3a38;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #4F5D45;
}

/* ----- Hero ----- */
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: Nunito, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--forest);
  margin: 0 0 8px;
}

.tagline {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 18px;
}

.hero-bullets {
  margin: 0 0 20px;
  padding: 0 0 0 18px;
}

.mockup .screenshot-placeholder {
  height: 360px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px dashed #c9c9c9;
  border-radius: 18px;
  color: #888;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ----- Feature Cards ----- */
.features-highlight {
  padding: 40px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--forest);
}

@media (max-width: 920px) {
  .cards { grid-template-columns: 1fr; }
}

/* ----- Strip CTA ----- */
.strip {
  padding: 56px 0;
  background: #fff;
}

.strip-inner {
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
}

.strip-title {
  margin: 0;
  color: var(--forest);
}

/* ----- Page Layout ----- */
.page {
  padding: 34px 0;
}

.page h1 {
  color: var(--forest);
  font-family: Nunito, system-ui, sans-serif;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.feature-list section {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 920px) {
  .feature-list { grid-template-columns: 1fr; }
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

@media (max-width: 920px) {
  .mockup-grid { grid-template-columns: 1fr; }
}

.screenshot-placeholder {
  height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px dashed #c9c9c9;
  border-radius: 18px;
  color: #888;
}

/* ----- Plans Section ----- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0;
}

.plan {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.plan h3 {
  margin-top: 0;
  color: var(--forest);
}

.plan .price {
  font-size: 1.6rem;
  margin: .5rem 0 1rem;
}

.plan.highlight {
  border: 2px solid var(--mauve);
}

/* ----- Footer ----- */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid #eaeaea;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.mockup-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

/* Feature bullet points */
.feature-points {
  margin: 0.5rem 0 1.5rem 1.2rem;
  padding: 0;
  list-style: disc;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-points li {
  margin-bottom: 0.6rem;
}

.feature-points strong {
  color: var(--forest);
  font-weight: 700;
}

/* ================================
   Screenshot Layout & Captions
================================ */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.mockup-item {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.mockup-img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.mockup-caption {
  margin-top: 8px;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}

/* Special layout for the final two-device row */
.device-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 60px auto;
}

@media (max-width: 900px) {
  .mockup-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================
   Alternating Section Backgrounds
   ====================================== */

.feature-list:nth-of-type(odd) {
  background: #fffdf9; /* soft cream tone */
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 0 8px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}

.feature-list:nth-of-type(even) {
  background: #ffffff; /* clean white tone */
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 0 8px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}

/* For smaller screens, add some spacing adjustments */
@media (max-width: 768px) {
  .feature-list {
    padding: 22px;
  }
}

/* Optional: soften transitions when scrolling */
.feature-list {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.page section {
  margin-bottom: 60px;
}
.mockup-grid {
  margin-top: 30px;
  margin-bottom: 60px;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.btn-secondary {
  background: #6B554B; /* deeper mauve */
  color: #fff;
}

.page, .mockup-item, section {
  animation: fadeIn 0.8s ease both;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}
/* ===== Warm Classic Layout ===== */
body {
  font-family: 'Lato', system-ui, sans-serif;
  color: #3b3a38;
  background-color: #fff;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #4d584b;
}
.hero-warm {
  background-color: #f8f5ef;
  padding: 60px 0 30px;
  text-align: center;
}
.hero-warm h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}
.hero-warm .lead {
  font-size: 1.2rem;
  max-width: 680px;
  margin: 0 auto 20px;
}
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 520px;
}
.hero-benefits li {
  margin: 6px 0;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.ribbon {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #6b7764;
}

/* Why Section */
.why-section {
  background-color: #fff;
  padding: 60px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.why-card {
  background-color: #f8f5ef;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Features Alt */
.features-alt {
  background-color: #fff;
  padding: 60px 0;
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.feature-item {
  text-align: center;
}
.feature-item img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

/* Testimonial */
.testimonial-warm {
  background-color: #f8f5ef;
  padding: 60px 0;
  font-family: 'Playfair Display', serif;
  color: #4d584b;
}
.testimonial-warm blockquote {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* CTA */
.cta-warm {
  background-color: #fff;
  padding: 60px 0;
}
.cta-warm h2 {
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background-color: #f8f5ef;
  padding: 30px 0;
  font-size: 0.95rem;
}

/* Center the Calendar feature screenshot cleanly */
.feature-item.single-center {
  grid-column: 1 / -1; /* spans full width of the grid */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.feature-item.single-center img {
  width: 75%;
  max-width: 460px;
  border-radius: 14px;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.feature-item.single-center h4 {
  margin-top: 10px;
  color: #4F5D45;
}

.feature-item.single-center p {
  max-width: 500px;
  margin: 6px auto 0;
  color: #3b3a38;
}

/* ================= Contact Section (Pricing Page) ================= */

.contact-area {
  padding: 60px 0;
  background: #fff;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.contact-area h2 {
  color: var(--forest, #4F5D45);
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.contact-area .lead {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}

.contact-form button {
  justify-self: center;
  margin-top: 6px;
}

/* =================== FEATURE PAGE REFINEMENTS =================== */

/* Page background: warmer cream like homepage */
body.features-page {
  background: #f8f4ef; /* creamy beige tone */
}

/* The top feature container sections */
.feature-list {
  background: #fffdf9;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(126, 98, 75, 0.08);
  margin-bottom: 36px;
}

/* Each inner white feature box */
.feature-list section {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(125, 141, 110, 0.12); /* sage-green tint */
  transition: transform 0.20s ease, box-shadow 0.20s ease;
}

/* Optional: hover effect for subtle life */
.feature-list section:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(125, 141, 110, 0.18);
}

/* Titles */
.feature-list h2 {
  color: #4F5D45; /* deep sage/forest */
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  margin-bottom: 12px;
}

/* Text tone */
.feature-points li {
  color: #3b3a38;
}

/* Match background to homepage’s warmer cream tone */
body.features-page {
  background: #f8f4ef; /* slightly deeper, creamy beige */
}

/* White feature cards (Planner, Calendar, etc.) */
.feature-list section {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(125, 141, 110, 0.18); /* soft sage shadow */
  transition: transform 0.9s ease, box-shadow 0.9s ease;
  margin-bottom: 32px;
}

/* Optional: hover glow for depth */
.feature-list section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(125, 141, 110, 0.25);
}

/* Headings and text refinement */
.feature-list h2 {
  color: #4F5D45;
  font-family: 'Playfair Display', serif;
}

.feature-points li {
  color: #3b3a38;
}

/* =================== PRICING PAGE REFINEMENT =================== */

/* Match homepage background tone */
body.pricing-page {
  background: #f8f4ef; /* soft dark cream tone */
}

/* Page header */
.page h1 {
  color: #4F5D45;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 0.25em;
}

.page .lead {
  text-align: center;
  color: #3b3a38;
  margin-bottom: 2.5em;
}

/* Pricing grid layout */
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

/* Pricing cards */
.plan {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(79, 93, 69, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.plan:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(79, 93, 69, 0.18);
}

/* Highlighted yearly plan */
.plan.highlight {
  border: 2px solid #b37c78; /* rose tone border */
  box-shadow: 0 10px 28px rgba(179, 124, 120, 0.15);
}

/* Titles */
.plan h3 {
  font-family: 'Playfair Display', serif;
  color: #4F5D45;
  margin-bottom: 0.4rem;
}

/* Price text */
.plan .price {
  font-size: 1.9rem;
  font-weight: 600;
  color: #3b3a38;
  margin-bottom: 1.2rem;
}

/* Feature list */
.plan ul {
  list-style: none;
  padding: 0;
  color: #3b3a38;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.plan li {
  margin: 0.4rem 0;
}

/* Buttons */
.plan .btn {
  display: inline-block;
  background: #4F5D45;
  color: white;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(79, 93, 69, 0.15);
}

.plan .btn:hover {
  background: #637652;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(79, 93, 69, 0.22);
}

/* Stripe info */
.page .muted.center {
  text-align: center;
  margin-top: 1rem;
  color: #6c6a67;
}

/* Divider between pricing and contact */
.section-divider {
  border-top: 2px solid rgba(79, 93, 69, 0.1);
  margin: 4rem auto;
  width: 80%;
  max-width: 700px;
}

/* Contact section */
.contact-section {
  text-align: center;
  background: #fffdf9;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  box-shadow: 0 8px 28px rgba(125, 141, 110, 0.12);
  transition: box-shadow 0.25s ease;
}

.contact-section:hover {
  box-shadow: 0 10px 34px rgba(125, 141, 110, 0.18);
}

/* Contact titles */
.contact-section h2 {
  font-family: 'Playfair Display', serif;
  color: #4F5D45;
  margin-bottom: 0.5rem;
}

.contact-section p {
  color: #3b3a38;
  margin-bottom: 1.5rem;
}

/* Form fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(125, 141, 110, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b37c78;
  box-shadow: 0 0 0 3px rgba(179, 124, 120, 0.15);
}

/* Contact button */
.contact-form button {
  background: #4F5D45;
  color: #fff;
  padding: 10px 26px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(79, 93, 69, 0.15);
}

.contact-form button:hover {
  background: #637652;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(79, 93, 69, 0.22);
}
/* Keep pricing buttons aligned evenly */
.plans-grid {
  align-items: stretch; /* Make all cards equal height */
}

.plan {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to bottom */
}

.plan ul {
  flex-grow: 1; /* Fill available vertical space evenly */
}
/* Default site fonts */
body {
  font-family: 'Lato', system-ui, sans-serif;
  color: #3b3a38;
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #4F5D45;
  font-weight: 700;
}

/* Header brand name only */
.brand-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #4F5D45;
  letter-spacing: 0.4px;
}
/* ===== Unified Button Styles (Final) ===== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* 🌹 Get the App Button — Rose Outline */
.btn-primary {
  border: 2px solid #A76B6B;      
  background-color: #ffffff;        
  color: #A76B6B;                  
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #A76B6B;        /* rose fill on hover */
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(167, 107, 107, 0.25);
  transform: translateY(-1px);
}

/* 🌿 Secondary (See Features or neutral) */
.btn-secondary {
  border: 2px solid #4F5D45;
  background: transparent;
  color: #4F5D45;
}

.btn-secondary:hover {
  background: #4F5D45;
  color: #fff;
  box-shadow: 0 4px 10px rgba(79, 93, 69, 0.25);
  transform: translateY(-1px);
}

/* ================= MOBILE HEADER FIX ================= */
@media (max-width: 768px) {
  /* Hide that ghost menu button entirely */
  .nav-toggle {
    display: none !important;
  }

  /* Make header content align properly */
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  /* Keep logo and text together neatly */
  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  /* Move nav links to the right */
  .nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 1.2rem;
  }

  /* Slightly smaller buttons and links */
  .nav a,
  .btn {
    font-size: 0.95rem;
  }
}

/* Make Planner screenshot same size as the others on mobile */
@media (max-width: 768px) {
  .feature-item.single-center img {
    width: 100%;
    max-width: 400px; /* matches other screenshots */
  }
}
/* === Page-Specific Backgrounds === */

/* Homepage (index.html) */
body {
  background-color: #f9f7f3; /* lighter cream for homepage */
}

/* Features Page */
body.features-page {
  background-color: #fbf9f5; /* slightly lighter than before */
}

/* Pricing Page */
body.pricing-page {
  background-color: #f8f6f2; /* light beige-white tone */
}

/* Any other custom pages */
body.contact-page {
  background-color: #fffdf9; /* warm neutral */
}
/* ============================
   FAQ Section – Cozy HPHP Style
   ============================ */

.faq-section {
  margin: 4rem auto 5rem auto;
  max-width: 800px;
  padding: 0 1rem;
}

.faq-section h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #4F5D45;
  margin-bottom: 1.5rem;
}

.faq-container {
  display: grid;
  gap: 1rem;
}

/* Individual FAQ Card */
.faq-item {
  background: #fffdf9; /* your warm cream tone */
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(125, 141, 110, 0.12); /* soft sage shadow */
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item.open {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(125, 141, 110, 0.18);
}

/* FAQ Question button */
.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  color: #4F5D45;
  cursor: pointer;
}

/* + and – icon */
.faq-icon {
  font-size: 1.6rem;
  color: #A76B6B; /* rose tone */
  transition: color 0.2s ease;
}

.faq-item.open .faq-icon {
  color: #4F5D45; /* sage when open */
}

/* FAQ Answer animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px; /* supports long answers */
  padding-bottom: 1.2rem;
}

.faq-answer p {
  margin: 0.8rem 0 0 0;
  color: #3b3a38;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* ======================================
   FINAL iOS FIX — Force FAQ Accordion Style
   ====================================== */
.faq-container .faq-question {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #fffdf9 !important;
  border: none !important;
  border-radius: 18px !important;
  padding: 1.2rem 1.5rem !important;
  width: 100% !important;
  text-align: left !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  font-family: 'Lato', sans-serif !important;
  color: #4F5D45 !important;
  box-shadow: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.faq-container .faq-question:hover {
  background: #f4efe7 !important;
}

.faq-container .faq-icon {
  font-size: 1.6rem !important;
  color: #A76B6B !important;
  margin-left: 12px !important;
}

/* Make sure FAQ items stack correctly */
.faq-item {
  background: #fffdf9 !important;
  border-radius: 18px !important;
  padding: 0 !important;
  box-shadow: 0 8px 20px rgba(125, 141, 110, 0.12) !important;
}
