/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Container styling */
.faq-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

h1 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.faq-category {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-4px);
}

.faq-category h2 {
  color: #00703c;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #00703c;
  display: inline-block;
  padding-bottom: 5px;
}

details {
  margin-bottom: 15px;
  border-radius: 5px;
  background: #f2f2f2;
  padding: 10px 15px;
  transition: background 0.3s ease;
}

details:hover {
  background: #e8f5e9;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

details[open] summary {
  color: #00703c;
}

details p {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
  padding-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .faq-category {
    padding: 20px;
  }
}
