/* FAQ Page Specific Styles */

.faq-section {
  background: #fff;
  padding: 100px 0 60px 0;
}
.faq-title {
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 2.5rem;
  color: #c0392b;
  margin-bottom: 2.5rem;
}
.faq-subtext {
  text-align: center;
  font-family: "Belleza", sans-serif;
  color: #444;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.faq-content-row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.faq-visuals {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-width: 220px;
}
.faq-img {
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.13), 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  position: absolute;
  left: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.faq-img:nth-child(1) {
  top: 0;
  left: 10px;
  transform: rotate(-6deg) scale(1.05);
  z-index: 3;
}
.faq-img:nth-child(2) {
  top: 60px;
  left: 40px;
  transform: rotate(8deg) scale(0.98);
  z-index: 2;
}
.faq-img:nth-child(3) {
  top: 120px;
  left: 0;
  transform: rotate(-3deg) scale(0.93);
  z-index: 1;
}
.faq-img:hover {
  transform: scale(1.12) rotate(0deg);
  box-shadow: 0 12px 36px rgba(192, 57, 43, 0.18), 0 4px 16px rgba(0, 0, 0, 0.13);
  z-index: 10;
}
.faq-list {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 1.13rem;
}
.faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s;
}
.faq-question {
  font-family: "Bellefair", serif;
  font-size: 1.3rem;
  color: #c0392b;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
}
.faq-answer {
  font-family: "Belleza", sans-serif;
  font-size: 1.13rem;
  color: #444;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-question::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1rem;
  color: #c0392b;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  .faq-content-row {
    flex-direction: column;
    gap: 2rem;
  }
  .faq-visuals {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    min-height: 120px;
    min-width: 0;
    position: static;
  }
  .faq-img {
    position: static;
    width: 140px;
    height: 100px;
    margin: 0 0.5rem;
    transform: none !important;
  }
}
@media (max-width: 600px) {
  .faq-section {
    padding: 60px 0 40px 0;
  }
  .faq-title {
    font-size: 2rem;
  }
  .faq-list {
    gap: 0.7rem;
  }
  .faq-item {
    padding: 1.2rem 1rem;
  }
  .faq-visuals {
    display: none;
  }
}
