@charset "UTF-8";

.hero {
  background: url(../images/mv/faq_hero.webp) no-repeat center;
  background-size: cover;
}

.hero hgroup {
  align-items: center;
}


.faq-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.faq-inner {
  max-width: 800px;
  width: 100%;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  font-size: 1.5rem;
  color: #005b96;
  border-bottom: 2px solid #4a8ca4;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #4a8ca4;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
  line-height: 1.8;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4a8ca4;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin: 0.5rem;
}

.cta-button:hover {
  background: #347188;
}