* {
  font-family: "Inter Tight", sans-serif;
}
html {
  scroll-behavior: smooth;
}

:root {
  --light-color: #b67e7d;
  --secondary-color: #640000;
  --tertiary-color: #420001;
  --text-color: #040b15;
  --content-color: #dad5d5;
}

/* =====================
   FAQ SECTION
===================== */
.faq {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 60px 20px;
  justify-content: center;
}

.faq-container {
  max-width: 800px;
  width: 100%;
}

.faq-title {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100px !important;
}

.faq-text {
  margin-bottom: 30px;
}

.faq-text h1 {
  font-size: 46px;
}

.faq-text p {
  font-size: 16px;
}

/* =====================
   FAQ LIST + ITEMS
===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* =====================
   QUESTION ROW
===================== */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 3vw, 2rem);
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--secondary-color);
  font-weight: 500;
}

/* =====================
   ICON (+ → -)
===================== */
.faq-icon {
  position: relative;
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-icon .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.faq-icon .line-horizontal {
  transform: translateY(0) rotate(0deg);
}

.faq-icon .line-vertical {
  transform: rotate(90deg);
  opacity: 1;
}

/* When active → show minus */
.faq-item.active .faq-icon .line-vertical {
  transform: rotate(0deg);
  opacity: 0;
}
.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 100px;
  color: #555;
  line-height: 1.7;
  text-align: left;
  transition: height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  padding: 10px 40px 20px 40px;
}

@media (max-width: 768px) {
  .faq-answer {
    transform: translateY(-20px);
    padding: 0 30px;
  }
}

@media (min-width: 768px) {
  .faq-answer {
    transform: translateX(-20px);
    padding: 0 20px;
  }
}
