/* === Grundstil matchar din webshop === */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 0;
  color: #222;
}

/* === Header + meny === */

.faq-header {
  background-color: #2aa4a8;
  color: white;
  text-align: center;
  padding: 45px 20px 60px;
  position: relative;
  margin-bottom: 30px;
}

/* Meny */
.faq-nav {
  position: absolute;
  top: 15px;
  right: 20px;
}

.faq-nav a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  font-size: 15px;
}

.faq-nav a:hover {
  opacity: 0.85;
}

/* === FAQ Behållare === */

.faq-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px 50px;
}

/* === FAQ Boxar === */

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

/* === FAQ Frågor === */

.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 1.1rem;
  background: #fafafa;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.25s;
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
}

.faq-question.active::after {
  content: "–";
}

/* === FAQ Svar === */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  background: white;
  transition: max-height 0.35s ease;
  border-radius: 0 0 12px 12px;
}

.faq-answer p {
  padding: 15px 0 20px;
  margin: 0;
  font-size: 0.98rem;
  color: #444;
  line-height: 1.55;
}
