
.contact-intro {
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: #550000;
  color: #fff;
  padding: 120px 10% 100px;
}

.contact-image {
  flex: 1 1 380px;
  max-width: 420px;
}

.contact-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.contact-text-wrap {
  flex: 1 1 400px;
}

.contact-text-wrap .about-label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 15px;
}

.contact-text-wrap h1 {
  font-family: 'Libertinus Serif', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.75;
  margin-bottom: 26px;
}

.contact-text {
  font-family: 'Libertinus Serif', serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ---- MY APPROACH ---- */
.contact-approach {
  background-color: #f2ede9;
  color: #3d2b28;
  text-align: center;
  padding: 100px 10%;
}

.contact-approach .about-label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #550000;
  margin-bottom: 15px;
}

.contact-approach h2 {
  font-family: 'Libertinus Serif', serif;
  font-size: 34px;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto 24px;
}

.contact-approach p {
  font-family: 'Libertinus Serif', serif;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  color: #4a3733;
}


/* ---- FAQ ---- */
.faq {
  background-color: #550000;
  color: #fff;
  padding: 100px 10% 120px;
  text-align: center;
}

.faq .about-label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 15px;
}

.faq h2 {
  font-family: 'Libertinus Serif', serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Libertinus Serif', serif;
  font-size: 18px;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 26px;
}

.faq-answer p {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-intro {
    flex-direction: column;
    text-align: center;
    padding: 140px 6% 70px;
  }

  .contact-image {
    max-width: 100%;
  }

  .contact-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .contact-text-wrap h1 {
    font-size: 30px;
  }

  .contact-approach,
  .faq {
    padding: 70px 6%;
  }

  .contact-approach h2,
  .faq h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}