.content-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 20px;
}

.content-section h2 {
    color: #3b332c;
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.info-card {
    margin-top: 45px;
    background: #faf8f5;
    border: 1px solid #e5ded5;
    border-radius: 18px;
    padding: 35px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e5ded5;
}

.price-row:last-child {
    border-bottom: none;
}

.info-card .button {
    display: block;
    width: fit-content;
    margin: 35px auto 0;
}
/* ==================================================
   FAQ
================================================== */

.faq-section {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  padding: 90px 0 110px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5ded5;
  border-left: 9px solid #7a5c3a;
  border-radius: 26px;
  margin-bottom: 34px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:nth-child(even) {
  background: #faf8f5;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
}

.faq-item[open] {
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.14);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 38px 95px 38px 44px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  color: #3b332c;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  line-height: 1;
  font-weight: 300;
  color: #7a5c3a;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 44px 42px;
  font-size: 20px;
  line-height: 1.85;
  color: #5f554b;
}

.faq-item a {
  color: #7a5c3a;
  font-weight: bold;
}

@media (max-width: 850px) {
  .faq-section {
    width: 92%;
    padding: 60px 0 80px;
  }

  .faq-item {
    border-radius: 20px;
    border-left-width: 7px;
    margin-bottom: 24px;
  }

  .faq-item summary {
    font-size: 23px;
    padding: 28px 64px 28px 26px;
  }

  .faq-item summary::after {
    right: 26px;
    font-size: 36px;
  }

  .faq-item p {
    font-size: 17px;
    padding: 0 26px 28px;
  }
}
.pricing-card {
    max-width: 700px;
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid #e5ded5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 14px 38px rgba(0,0,0,.08);
}

.pricing-card h3 {
    text-align: center;
    font-size: 30px;
    color: #3b332c;
    margin: 0 0 30px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.pricing-table td {
    padding: 18px 0;
    border-bottom: 1px solid #e5ded5;
    font-size: 20px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #7a5c3a;
}

.pricing-card .button {
    display: table;
    margin: 0 auto;
}

.contact-section {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 0 110px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 38px;
}

.contact-intro .eyebrow {
  margin-bottom: 10px;
}

.contact-intro h2 {
  font-size: 42px;
  line-height: 1.15;
  color: #3b332c;
  margin: 0 0 18px;
}

.contact-intro p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 19px;
  color: #5f554b;
}

.contact-form {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border: 1px solid #e5ded5;
  border-top: 10px solid #7a5c3a;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-field {
  width: 100%;
  margin-bottom: 26px;
}

.form-field label {
  display: block;
  font-weight: bold;
  color: #3b332c;
  margin-bottom: 10px;
  font-size: 17px;
}

.form-field label span {
  color: #7a5c3a;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d8cfc3;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;
  color: #3b332c;
  background: #ffffff;
}

.form-field textarea {
  min-height: 190px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #7a5c3a;
  box-shadow: 0 0 0 5px rgba(122, 92, 58, 0.15);
}

.website-field {
  display: none;
}

.contact-form .button {
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 16px 38px;
  display: block;
  margin: 10px auto 0;
}

.response-note {
  text-align: center;
  margin-top: 22px;
  color: #5f554b;
  font-size: 16px;
}

@media (max-width: 850px) {
  .contact-section {
    padding: 60px 0 80px;
  }

  .contact-intro h2 {
    font-size: 32px;
  }

  .contact-form {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
/* ==================================================
   Pricing
================================================== */
.pricing-card {
    max-width: 700px;
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid #e5ded5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 14px 38px rgba(0,0,0,.08);
}

.pricing-card h3 {
    text-align: center;
    font-size: 30px;
    color: #3b332c;
    margin: 0 0 30px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 35px;
}

.pricing-table td {
    padding: 18px 0;
    border-bottom: 1px solid #e5ded5;
    font-size: 20px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #7a5c3a;
}

.pricing-card .button {
    display: table;
    margin: 0 auto;
}
/* Meet the Trainer layout */
.trainer-left {
  flex: 0 0 360px;
  max-width: 360px;
}

.trainer-left .trainer-image {
  width: 100%;
}

.trainer-left .trainer-image img {
  width: 100%;
  height: auto;
  display: block;
}

.trainer-content {
  flex: 1 1 0;
  min-width: 0;
}

.quick-facts {
  background: #f7f1e8;
  border: 1px solid #e5d8c5;
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

@media (max-width: 850px) {
  .trainer-left {
    flex: 1 1 100%;
    max-width: 100%;
  }
}