/* ======================================================
   Orbitrex Peptides — FAQ Page Styles
   ====================================================== */

/* ---- Page Hero / Breadcrumb Banner ---- */
.page-hero {
  background: linear-gradient(135deg, #eef8f2 0%, #e6f5ec 50%, #eaf8f5 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(32,157,80,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.breadcrumb a {
  color: #209d50;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #1a8443; }

.breadcrumb .separator {
  color: #999;
}

/* ---- FAQ Content Area ---- */
.faq-page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ---- Section Heading ---- */
.faq-section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a3c28;
  margin-bottom: 32px;
  margin-top: 60px;
}

.faq-section-heading:first-child {
  margin-top: 0;
}

/* ---- FAQ List ---- */
.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- FAQ Item ---- */
.faq-page-item {
  background: #f0faf4;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-page-item:hover {
  background: #e6f5ec;
}

.faq-page-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3c28;
  text-align: left;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-page-question .faq-toggle-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #209d50;
  transition: transform 0.3s;
}

.faq-page-item.open .faq-page-question .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-page-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-page-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.faq-page-answer-inner p {
  margin-bottom: 12px;
}

.faq-page-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-page-answer-inner strong {
  color: #1a3c28;
}

.faq-page-answer-inner a {
  color: #209d50;
  text-decoration: underline;
}

.faq-page-answer-inner a:hover {
  color: #1a8443;
}

.faq-page-answer-inner ul,
.faq-page-answer-inner ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.faq-page-answer-inner ul { list-style: disc; }
.faq-page-answer-inner ol { list-style: decimal; }

.faq-page-answer-inner li {
  margin-bottom: 6px;
}

/* ---- CTA Banner at bottom ---- */
.faq-cta {
  text-align: center;
  padding: 60px 24px;
  background: #f7fbf9;
}

.faq-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a3c28;
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 16px;
  }

  .faq-section-heading {
    font-size: 26px;
  }

  .faq-page-question {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-page-answer-inner {
    padding: 0 18px 16px;
    font-size: 14px;
  }
}
