/* assets/css/base.css */
body {
  font-family: var(--font-base);
  color: var(--color-text-main);
  background: var(--color-bg-page);
  line-height: 1.6;
  font-size: 18px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin-bottom: 16px;
  color: #000;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-primary);
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}

h2::after {
  content: "";
  display: block;
  width: 65%;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(to right, var(--color-primary), transparent);
  border-radius: 3px;
}

p {
  margin-bottom: 12px;
  color: var(--color-text-main);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

/* FAQ Section */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-question.active + .faq-answer {
  max-height: 500px; /* Adjust as needed */
}

:root {
  --font-base: "Roboto", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  --font-heading: "Roboto", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  outline: none;
  font-family: "Roboto", sans-serif;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.faq-question.active::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-answer p {
  padding: 0 15px 15px;
  margin: 0;
  font-family: "Roboto", sans-serif;
}
