.faq {
  padding: 3rem 0;
}

.faq .container {
  max-width: 600px;
  margin: 0 auto;
}

.headies {
  text-align: center;
}

.faq-section {
  margin: 0 auto;
   max-width: 500px;
}

details {
  background-color: #ffffff;
  border: 2px solid rgba(171, 207, 248, 1);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

summary {
  font-weight: 600;
  color: #3a3a3a;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  position: relative;
  padding-right: 2rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '\f078'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: rgba(0, 101, 205, 1);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: '\f077'; 
}


.faq-content {
  padding-top: 20px;
  color: #4b5563;
  line-height: 1.6;
}

.faq-content p {
  margin: 0.3rem 0 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 3rem 0;
  }
  
  details {
    padding: 20px;
  }
  summary {
  font-size: 16px;
}

}
