* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #e5e7eb;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Main Container */
.text-body {
  background: linear-gradient(135deg, #f0f4f8, #d9e7ec);
  font-family: 'Poppins', sans-serif;
  padding: 60px 40px;
}

/* Motion: How To Help */
.how-to-help {
  color: #2ecc71;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  opacity: 0;
  transform: scale(0.8) translateY(-20px);
  animation: bounceFadeIn 10s ease-out 0.3s forwards;
}

/* New Keyframes */
@keyframes bounceFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}


/* Motion: FAQ Title */
.faq-title {
  color: #34495e;
  font-size: 42px;
  margin: 20px 0;
  font-weight: 800;
  animation: fadeAndScale 1.2s ease-out;
  transform-origin: left;
}

@keyframes fadeAndScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Subtitle Text */
.explore-text {
  color: #7f8c8d;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 650px;
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FAQ Item */
.faq-item {
  background-color: #ffffff;
  border-left: 4px solid #e74c3c;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #c0392b;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.15);
  transform: translateY(-2px);
}

.faq-item input[type="checkbox"] {
  display: none;
}

/* Question Toggle */
.faq-toggle {
  color: #34495e;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-toggle::before {
  content: "+";
  color: #e74c3c;
  font-size: 22px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-toggle::before {
  content: "-";
  transform: rotate(180deg);
}

.faq-toggle span {
  flex-grow: 1;
}

.faq-answer {
  display: none;
  margin-top: 14px;
  color: #7f8c8d;
  padding-left: 28px;
  border-left: 2px solid #2ecc71;
  animation: fadeInAnswer 0.5s ease-in;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  display: block;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .text-body {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 32px;
  }

  .explore-text {
    font-size: 14px;
  }

  .faq-toggle {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
  }

  .how-to-help {
    font-size: 14px;
  }

  .faq-toggle::before {
    font-size: 18px;
  }
}
