html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.navbar-container {
  z-index: 20;
  position: absolute;
  top: 0px;
  left: 0px;
}

.faq-main {
  margin-top: 65px;
  padding: 0px 15px 60px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100vw !important;
  position: relative;
  background-color: #f7f9fb;
  flex: 1;
}

.faq-hero {
  text-align: center;
  margin-bottom: 32px;
}

.faq-hero h1 {
  font-size: 2.3rem;
  color: #000000;
  margin-bottom: 8px;
}

.faq-hero p {
  color: #444;
  font-size: 1.1rem;
}

.faq-list {
  margin-top: 0px;
  width: 75%;
  overflow-x: hidden;
  padding: 0 10px 40px 10px;
  flex: 1;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: 0 0px 15px rgba(37, 37, 37, 0.13);
}

.faq-question {
  cursor: pointer;
  padding: 20px 28px 20px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f9fb;
  border: none;
  width: 100%;
  outline: none;
  transition: background 0.2s;
  text-align: left;
}

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

.faq-answer {
  padding: 20px;
  color: #333;
  font-size: 1rem;
  display: none;
  animation: fadeIn 0.3s;
}

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

.faq-icon {
  font-size: 1.2rem;
  margin-left: 12px;
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .faq-main {
    padding: 18px 4px 40px 4px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 16px 16px 16px 12px;
  }
  .faq-answer {
    font-size: 0.97rem;
    padding: 0 12px 16px 12px;
  }
}

.footer-container {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}
