/* FAQ Section Styles */
.ascend-faq-section {
  position: relative;
  padding: 40px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.ascend-faq-section.bg-white {
    background-color: var(--Color-Palette-White);
}
.ascend-faq-section.bg-cream {
    background-color: var(--Color-Palette-Cream);
}
.ascend-faq-section.bg-copper {
    background-color: var(--Color-Palette-Copper);
}
.ascend-faq-section.bg-dark-chocolate {
    background-color: var(--Color-Palette-Dark-Chocolate);
}
.ascend-faq-section.bg-olive {
    background-color: var(--Color-Palette-Olive);
}
.ascend-faq-section.bg-khaki {
    background-color: var(--Color-Palette-Khaki);
}
.ascend-faq-section.bg-random-color {
    background-color: var(--Color-Palette-Random-Color);
}
.ascend-faq-section.bg-random-color-two {
    background-color: var(--Color-Palette-Random-Color-Two);
}

.faq-section-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 35% auto;
  gap: 25px;
  align-items: flex-start;
  padding: 0 20px 0 0;
}

/* Left Content Column */
.faq-content-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 0 0 20px;
}

.faq-subheading {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-heading {
  color: var(--Color-Palette-Copper, #6F3A20);
  font-family: var(--heading-font), Baskerville, serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.faq-description {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
  margin-bottom: 30px;
}

.faq-button-container {
  margin-top: 20px;
}

.faq-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--Color-Palette-Olive, #7D7359);
  color: var(--Color-Palette-White, #FFF);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-button:hover {
  background: var(--Color-Palette-Cream, #EDE3D1);
  color: var(--Color-Palette-Copper, #6F3A20);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Right FAQ Column */
.faq-items-column {
  display: flex;
  flex-direction: column;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: #FFF;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.bg-white {
    background-color: var(--Color-Palette-White);
}
.faq-item.bg-cream {
    background-color: var(--Color-Palette-Cream);
}
.faq-item.bg-copper {
    background-color: var(--Color-Palette-Copper);
}
.faq-item.bg-dark-chocolate {
    background-color: var(--Color-Palette-Dark-Chocolate);
}
.faq-item.bg-olive {
    background-color: var(--Color-Palette-Olive);
}

.faq-item.active {
  box-shadow: 0px 8px 20px 0px rgba(125, 115, 89, 0.55);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
}

.faq-question:hover {
  background-color: rgba(125, 115, 89, 0.05);
}

.faq-question-text {
  color: var(--Color-Palette-Copper, #6F3A20);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.6px;
  flex: 1;
  text-align: left;
}

/* FAQ Icon */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 20px;
  height: 20px;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer-content {
  color: var(--Color-Palette-Dark-Chocolate, #2E2E24);
  font-family: var(--body-font), Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
  padding-top: 12px;
}

.faq-answer-content a {
  color: inherit;
  text-decoration: underline !important;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-content-wrapper {
    gap: 40px;
  }
  
  .faq-heading {
    font-size: 40px;
    line-height: normal;
  }
}

@media (max-width: 920px) {
  .faq-content-column {
    padding: 0;
  }
  .ascend-faq-section {
    padding: 20px 0;
  }
  
  .faq-section-container {
    padding: 0 20px;
  }
  
  .faq-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0 !important;
  }
  
  .faq-heading {
    font-size: 36px;
    line-height: normal;
  }
  
  .faq-subheading {
    font-size: 18px;
    line-height: 18px;
    display: none;
  }
  
  .faq-description {
    font-size: 15px;
    line-height: 18px;
    display: none;
  }
  
  .faq-question {
    padding: 16px 20px;
  }
  
  .faq-question:active,
  .faq-question:focus,
  .faq-question:focus-within {
    outline: none;
  }
  
  .faq-question-text {
    font-size: 18px;
    line-height: 22px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }
  
  .faq-answer-content {
    font-size: 15px;
    line-height: 18px;
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .ascend-faq-section {
    padding: 20px 0;
  }
  
  .faq-section-container {
    padding: 0 16px;
  }
  
  
  .faq-question {
    padding: 14px 16px;
  }
  
  .faq-question-text {
    font-size: 16px;
    line-height: 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
  
  .faq-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
} 