/* FAQ Accordion */
.faq-accordion {
  margin-top: 40px;
}

.faq-accordion-item {
  background: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-accordion-header {
  width: 100%;
  padding: 20px 25px;
  background: var(--bg-light-green);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.3s ease;
}

.faq-accordion-header:hover {
  background: var(--bg-dark-green);
}

.faq-accordion-item.active .faq-accordion-header {
  background: var(--primary);
  color: white;
}

.faq-accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-accordion-item.active .faq-accordion-content {
  padding: 25px;
}

.faq-accordion-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* FAQ Page Steps */
.faq-steps-title {
  font-size: 2.2rem;
  text-align: center;
  margin: 30px 0 40px;
  color: var(--dark);
  font-weight: 700;
}

.faq-steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.faq-step-item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  align-items: flex-start;
}

.faq-step-image {
  flex: 0 0 300px;
  width: 300px;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 30px;
}

.faq-step-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.faq-step-image h3 {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin: 0;
}

.faq-step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.faq-step-terms {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.faq-step-terms strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-step-terms p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Mobile: Keep vertical layout */
@media screen and (max-width: 768px) {
  .faq-step-item {
    flex-direction: column;
  }

  .faq-step-image {
    flex: 0 0 auto;
    width: 100%;
  }
}
