@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&display=swap');

:root {
  --primary: hsl(292, 42%, 45%);
  --background: hsl(275, 100%, 97%);
  --white: #fff;
  --text: hsl(292, 42%, 15%);
  --muted: hsl(292, 16%, 49%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: url('bg-pattern-desktop.svg') no-repeat top center / cover;
  width: 100%;
  padding: 2rem;
}

.faq-card {
  background: var(--white);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-card h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.toggle {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 1rem;
  cursor: pointer;
}

.faq-answer {
  display: none;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .toggle {
  background: hsl(292, 42%, 20%);
}
