.faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.faq-box {
  width: 100%;
  max-width: 900px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2rem;
  color: #0E386F;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 15px 20px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.faq-item summary {
  font-weight: bold;
  font-size: 1.05rem;
  cursor: pointer;
  color: #0E386F;
  position: relative;
  padding-right: 25px;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  color: #0E386F;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 10px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #444;
}
