/* ===== GLOBAL / RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Outfit", sans-serif;
  background-color: #f4f4f9;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ===== FONTS ===== */
@font-face {
  font-family: regfont;
  src: url("Nexa-ExtraLight.ttf");
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #0000008c;
  padding: 10px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  backdrop-filter: blur(25px);
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: regfont;
  align-items: center;
  white-space: nowrap;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  padding: 6px 4px;
  display: inline-block;
  font-family: regfont;
  line-height: 1;
}

.navbar-links a:hover {
  color: #aac1e6;
}

/* Navbar responsive */
@media (max-width: 450px) {
  .navbar-links {
    gap: 16px;
  }
  .navbar-links a {
    font-size: 0.7rem;
    padding: 6px 2px;
  }
}


/* ===== FAQ PAGE STYLES ===== */
body {
    font-family: 'Inter', sans-serif;
    background: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    font-size: 3rem;
    color: #1c5899;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #e6f0ff;
}

.faq-answer {
    padding: 20px 20px 20px 20px;
    display: none;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}