/* ===== Global Styles ===== */

body {
  background-color: #f5f7fa;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== Hero Banner ===== */
.hehe {
  background: blueviolet;
  color: white;
  text-align: center;
  width: 96%;
  margin: 1.8rem auto 0;
  border-radius: 15px;
  padding: 40px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== FAQ Section ===== */
.faq {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}
.faq h2 {
  text-align: center;
  font-size: 36px;
  color: blueviolet;
}
.accordion {
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border: 1px solid blueviolet;
}
.accordion-header {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.accordion-header i {
  font-size: 20px;
  transition: transform 0.3s;
}
.accordion-header.active i {
  transform: rotate(45deg);
}
.accordion-body {
  padding: 0 20px 20px 20px;
  display: none;
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .hehe {
    padding: 20px;
  }
  .hehe h1 {
    font-size: 1.4rem;
  }
  .hehe p {
    font-size: 0.8rem;
  }
  .faq {
    margin: 20px auto;
    text-align: center;
  }
  .faq h2 {
    text-align: center;
    font-size: 1.4rem;
    color: blueviolet;
    margin-bottom: 1rem;
  }
  .accordion-header {
    font-size: 1rem;
  }
  .accordion-body {
    font-size: 0.9rem;
  }
}
