* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

.faq-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  gap: 40px;
}

.faq-left {
  flex: 50%;
}

.faq-left h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.faq-left p {
  margin-bottom: 20px;
  color: #555;
}

.faq-left ul {
  list-style: none;
  margin-bottom: 25px;
}

.faq-left li {
  margin-bottom: 10px;
  color: #1b5e20;
  font-weight: 500;
}

.contact-btn {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-btn:hover {
  background-color: #333;
}

.faq-right {
  flex: 50%;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 15px 0;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #207840;
}


.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #555;
}

.faq-answer a {
  color: #0077ff;
  text-decoration: none;
  font-weight: 500;
}

.faq-item.active .faq-answer {
  display: block;
  background: #fff;
  border-bottom: 1px solid rgba(223, 134, 0, 0.3);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(223, 134, 0, 0.15);
  padding: 16px 18px;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer:hover {
  box-shadow: 0 6px 14px rgba(223, 134, 0, 0.25);
}
