/* FAQ Section Styling */
.faq-section {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Times New Roman', Times, serif;
  color: #222;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e0a75f;
  font-family: 'Times New Roman', Times, serif;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* FAQ Item Styling */
.faq-item {
  border-bottom: 1px solid #e0a75f;
  text-align: left;
  padding: 15px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
   font-family: 'Times New Roman', Times, serif;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "\25BC";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-question:hover {
  color: rgb(30,43,60);
}

/* FAQ Answer Styling */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
  .faq-container h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}
.social-icons  {
  margin-left: 15px;
  font-size: 20px;
  cursor: pointer;
  color:black;
}