/* Therapy Page Specific Styles */


/* Approach Cards */
.approach-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.approach-benefits {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.approach-benefits li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

.approach-benefits li::before {
  content: "•";
  color: var(--color-accent-sage);
  position: absolute;
  left: -1rem;
  font-weight: bold;
}

/* Process Steps */
.process-steps {
  position: relative;
  margin: 3rem 0;
}

.process-step {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}

.step-number {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  padding-bottom: 1.5rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

/* Session Information */
.info-item {
  display: flex;
  margin-bottom: 2rem;
  text-align: justify;
}

.info-icon {
  background-color: var(--color-accent-sage-light);
  color: var(--color-accent-sage);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.session-info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

/* FAQ Section */
.faq-accordion {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-secondary);
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  transition: var(--transition);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  text-align: justify;
}

.faq-answer.active {
  padding-bottom: 1.5rem;
}

/* Approaches Grid */
.approaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 2.5rem;
}

.approach-icon {
  background-color: var(--color-accent);
  color: var(--color-primary);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .approach-card {
    padding: 1.5rem;
  }
  
  .process-steps {
    margin: 2rem 0;
  }
  
  .process-step {
    margin-bottom: 1.5rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    margin-right: 1rem;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 1rem;
  }
  
  .session-info-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .therapy-intro {
    padding: 1rem 0 3rem;
  }
}

@media (max-width: 576px) {
  .approach-benefits {
    padding-left: 1.2rem;
  }
  
  .approach-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
} 