.faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 60px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #003a8f, #0077c8);
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 22px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #003a8f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  text-align:left;
}


.faq-question span{
  flex:1;
  text-align:left;
}

.icon{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  font-weight:bold;
  width: 45px;
  height: 45px;
  background: #c3f4ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: orange;
  margin: auto;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-answer p {
  padding: 20px 0;
  color: #444;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}