.main-content {
  background-color: #fff;
  padding: 4%;
  margin: 0 4%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.category-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-button {
  background: white;
  border: 2px solid #a8d5ba;
  color: #a8d5ba;
  padding: 12px 24px;
  border-radius: 100vw;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.tab-button.active,
.tab-button:hover {
  background: #a8d5ba;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 211, 151, 0.3);
}

.faq-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: #e5ffd9;
  padding-left: 2.2rem;
}

.faq-question h3 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border: 2px solid #a8d5ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8d5ba;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: #a8d5ba;
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f9f9f9;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 2rem;
  color: #555;
  line-height: 1.8;
  border-left: 4px solid #a8d5ba;
  margin-left: 2rem;
}

.highlight {
  color: #a8d5ba;
  font-weight: 600;
}

.contact-section {
  background: linear-gradient(135deg, #a8d5ba, #87ceeb);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 4px 20px rgba(184, 211, 151, 0.3);
}


.contact-section span {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  display: block;
}

.contact-button {
  background: white;
  color: #a8d5ba;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .category-tabs {
    flex-direction: column;
  }

  .tab-button {
    min-width: auto;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question:hover {
    padding-left: 1.7rem;
  }

  .faq-answer-content {
    padding: 1.5rem;
    margin-left: 1rem;
  }

  .intro-section,
  .contact-section {
    padding: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}