* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fff;
  --text: #000;
  --hover: #555;
}

body {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 90px;
  background-color: var(--bg);
}

html {
  scroll-behavior: smooth;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.faq-question::after {
  content: "\25BC";
  font-size: 16px;
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 20px;
  color: #333;
}

.faq-answer.show {
  display: block;
}