body.page_pricing {
  overflow-y: auto;
  height: auto;
}

body.page_pricing .home_layout {
  height: auto;
  min-height: 100svh;
}

body.page_pricing .home_content {
  flex: 1;
  height: auto;
  overflow: visible;
  padding-top: 24px;
  padding-bottom: 40px;
}

.pricing_container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing_hero {
  background: var(--color-card-bg);
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  max-width: 900px;
  /* MATCHED: Accordion and FAQ contact width */
  margin: 0 auto 32px;
  /* Centered */
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.pricing_hero_content {
  max-width: 800px;
  margin: 0 auto;
}

.pricing_hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.pricing_rate_card {
  display: inline-flex;
  align-items: baseline;
  background: var(--color-light-bg);
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid var(--color-border-light);
}

.pricing_currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-right: 2px;
}

.pricing_amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1;
}

.pricing_unit {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-left: 6px;
}

.pricing_hero_description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
}


/* =====================================================
  ACCORDION LAYOUT
=====================================================
*/

.pricing_accordion_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  /* This is the width we're matching */
  margin: 32px auto 0 auto;
}

/* This is the <summary> tag */
.pricing_accordion_item .faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 56px;
  /* Make space for the '+' icon */
}

.pricing_accordion_item .faq_question::after {
  right: 24px;
  /* Keep the '+' icon positioned correctly */
}

/* This is the <div> inside the <details> tag */
.pricing_accordion_item .faq_answer {
  /* Uses .faq_answer styles from components.css */
  padding-top: 0;
  /* Adjust padding for new content */
}

/* The description <p> tag inside the answer */
.pricing_accordion_item .faq_answer>p {
  padding-top: 16px;
  /* Re-apply padding to first <p> */
  margin-bottom: 24px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Highlighted item (e.g. Mini Session) */
.pricing_accordion_item--highlight {
  border: 2px solid #c41e3a;
  /* Red border to match home page */
  background-color: #fff5f5;
  /* Light festive red */
  border-radius: 8px;
  margin-bottom: 12px;
}

.pricing_accordion_item--highlight .faq_question {
  font-weight: 700;
  color: #c41e3a;
}

.pricing_accordion_item--highlight .session_price {
  color: #c41e3a;
}

/* Ensure title stays red when open */
.pricing_accordion_item--highlight[open]>.faq_question {
  color: #c41e3a;
}

/* The "Book" button */
.embedded_book_button {
  display: table;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
}


/* --- PRICE STYLES --- */

.session_price {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

/* Fix for centering the contact box */
.faq_contact {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
  /* UPDATED: Match accordion width and center */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq_contact h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: #333;
}

.faq_contact p {
  margin: 0 0 24px 0;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}