*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Header */
header {
  flex-shrink: 0;
  background: #4F0B65;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}
header img {
  display: block;
  height: 36px;
  width: auto;
}
/* Main */
main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}
/* Language switcher */
#lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
#lang-switcher button {
  background: transparent;
  border: 1.5px solid #d0d0d0;
  border-radius: 20px;
  padding: 6px 16px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
#lang-switcher button:hover {
  border-color: #F04C0A;
  color: #F04C0A;
}
#lang-switcher button.active {
  background: #F04C0A;
  border-color: #F04C0A;
  color: #ffffff;
}
/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid #F2D5F2;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: none;
  padding: 18px 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover {
  color: #F04C0A;
}
.faq-question[aria-expanded="true"] {
  color: #F04C0A;
}
.toggle-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F04C0A;
  line-height: 1;
}
.faq-answer {
  background: #FFF7F4;
  border-left: 3px solid #F04C0A;
  padding: 16px 20px;
  margin-bottom: 4px;
  border-radius: 0 4px 4px 0;
}
.faq-answer p {
  color: #333;
  font-size: 0.9375rem;
}
/* Footer */
footer {
  flex-shrink: 0;
  background: #4F0B65;
  color: #ffffff;
  text-align: center;
  padding: 20px 24px;
  font-size: 0.875rem;
}
/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 1.375rem; }
  #lang-switcher button { font-size: 0.8125rem; padding: 5px 12px; }
}