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_container h1 {
  text-align: center;
  color: #333;
  margin-top: 0;
  margin-bottom: 16px;
}

.pricing_intro {
  /* UPDATED: Matched max-width to accordion */
  text-align: left;
  font-size: 17px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 32px;
  line-height: 1.6;
  background-color: #fcfcfc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
}

/* =====================================================
  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;
}