/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Page background */
body {
  background: #f4f6f8;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* FAQ container */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

/* Title */
.faq h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #1f2937;
}

/* FAQ cards */
details {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

/* Summary (clickable question) */
summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  outline: none;
}

/* Remove default arrow spacing */
summary::-webkit-details-marker {
  margin-right: 8px;
}

/* Content spacing */
details p,
details ul,
details ol {
  margin-top: 10px;
}

details ul,
details ol {
  padding-left: 20px;
}

/* Contact section */
#contact {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* Links */
a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }

  .faq h1 {
    font-size: 22px;
  }

  summary {
    font-size: 15px;
  }
}
