/*--------FAQ section----*/
.faq-section{
max-width: 900px;
margin: 80px auto;
padding: 20px;
text-align: center;
}

.faq-section{
    color: #002b70;
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-section h1 {
  color: #002b70;
  font-size: 2rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.faq-container {
  text-align: left;
}

/* Each question block */
details {
  background: #ffffff;
  border: 1px solid #d0e3ff;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
}

details summary {
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  position: relative;
}

details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  color: #004aad;
  transition: transform 0.2s ease;
}


details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

details p {
  margin-top: 12px;
  line-height: 1.7;
  color: #444;
}

/* Hover effect */
details:hover {
  border-color: #004aad;
  box-shadow: 0 4px 10px rgba(0, 74, 173, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 20px 10px;
  }

  details summary {
    font-size: 1rem;
  }
}