:root {
  --bp-sage: #78866b;
  --bp-sage-hover: #657058;
  --bp-cream: #f2e8d5;
  --bp-serif: 'Nunito Sans', sans-serif;
}

.faq-hero {
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 18%, rgba(242, 232, 213, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 83% 72%, rgba(242, 232, 213, 0.14) 0%, transparent 40%),
    linear-gradient(125deg, #4f5b46 0%, #6d7960 52%, #8e9a7f 100%);
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.36));
}

.faq-hero .container {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.faq-kicker {
  display: inline-block;
  color: var(--bp-cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-hero h1 {
  color: #fff;
  font-family: var(--bp-serif);
  font-size: clamp(2.1rem, 5.6vw, 3.7rem);
  margin-bottom: 0.85rem;
  line-height: 1.05;
}

.faq-hero p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-section {
  background: linear-gradient(180deg, #f4f2ee 0%, #ffffff 100%);
  padding: 5rem 0;
}

.faq-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .faq-top {
    grid-template-columns: 1fr;
  }
}

.faq-highlight {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 18%, transparent);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(73, 84, 61, 0.08);
}

.faq-highlight i {
  font-size: 1.2rem;
  color: var(--bp-sage-hover);
}

.faq-highlight h3 {
  margin: 0.5rem 0 0.4rem;
  color: var(--bp-sage-hover);
  font-size: 1.03rem;
  font-weight: 700;
}

.faq-highlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5f6a57;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 15%, transparent);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(101, 112, 88, 0.09);
}

.faq-card .accordion-item {
  border: none;
  border-bottom: 1px solid #edf0ea;
}

.faq-card .accordion-item:last-child {
  border-bottom: none;
}

.faq-card .accordion-button {
  font-weight: 600;
  color: #2d3c2f;
  padding: 1rem 1.2rem;
  font-size: 0.96rem;
}

.faq-card .accordion-button:not(.collapsed) {
  color: #29402b;
  background: color-mix(in srgb, var(--bp-cream) 36%, white);
  box-shadow: none;
}

.faq-card .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-card .accordion-body {
  color: #50604d;
  line-height: 1.76;
  font-size: 0.95rem;
  padding-top: 0.2rem;
}

.faq-side-image {
  position: sticky;
  top: 105px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--bp-sage) 15%, transparent);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(101, 112, 88, 0.08);
}

.faq-side-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.faq-side-content {
  padding: 1.2rem 1.2rem 1.3rem;
}

.faq-side-content h3 {
  margin: 0 0 0.45rem;
  color: var(--bp-sage-hover);
  font-family: var(--bp-serif);
  font-size: 1.45rem;
}

.faq-side-content p {
  margin: 0 0 1rem;
  color: #596854;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .faq-side-image {
    position: static;
  }
}
