/* FAQ container */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.55); /* mjukare, mindre skrikig */
  backdrop-filter: blur(8px); /* snygg glassmorphism-look */
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}


.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: Cormorant, serif;
  font-size: 22px;         /* större text */
  font-weight: 700;
  text-align: left;
  padding: 24px 26px;      /* MER luft = högre lådor */
  cursor: pointer;
  color: #233;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* Remove ugly default button styles */
.faq-question:focus {
  outline: none;
}

/* Arrow icon */
.faq-arrow {
  font-size: 22px;
  transition: transform 0.25s ease;
}

/* Rotate when open */
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 26px 26px 26px;  /* mer luft runt svaret */
  animation: fadeIn 0.25s ease;
}

/* Show when parent has .open */
.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-family: Nunito, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #244;
}

/* Smooth fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero area tweak */
.faq-hero {
  padding: 60px 0 40px;
}

.faq-card {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 30px;
}
