/*body {*/
/*  margin: 0;*/
/*  font-family: 'Segoe UI', sans-serif;*/
/*  background: #ffffff;*/
/*  padding: 20px;*/
/*}*/

.faq-wrapper {
  max-width: 1800px;
  margin: auto;
  background: #f1f1ff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h2 {
  color: #00005C;
  font-weight: bold;
  font-size: 1.5em;
}

.faq-logo {
  height: 120px;
  object-fit: contain;
}

.faq-container {
  margin-top: 20px;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: "▼";
  position: absolute;
  right: 16px;
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  overflow: hidden;
  background: #f8f8ff;
  color: #555;
  padding: 0 20px;
  font-size: 1.2rem;
  max-height: 0;
  transition: all 0.3s ease;
}

/*.faq-question.active + .faq-answer {*/
/*  max-height: 200px;*/
/*  padding: 12px 16px 16px;*/
/*}*/

 /*Responsive */
@media (max-width: 600px) {
  .faq-wrapper {
    padding: 16px;
    padding-bottom: 15px;
  }

  .faq-header h2 {
    font-size: 1.2em;
  }

  .faq-logo {
    height: 70px;
  }
.faq-answer {
  font-size: 0.9em;
  padding : 0 12px;
}
  .faq-question {
    padding: 14px;
  }
}