body {
  color: #dbf3dc;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.banner {
  width: 100%;
  padding: 1rem 0;
  background: url(../img/background.png) no-repeat;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

.banner h1 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 0.48rem, 48px);
  color: #064e3b;
}

.banner p {
  color: #065f46;
  font-size: clamp(14px, 0.18rem, 18px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  margin: clamp(28px, 0.5rem, 50px) 0 20px 0;
  font-size: clamp(20px, 0.28rem, 28px);
  color: #064e3b;
}
h3 {
  font-size: 18px;
  color: #064e3b;
}

.featured_block,
.category_block {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.featured_block p,
.category_block p {
  margin: 10px 0;
  font-size: 15px;
  color: #6b7280;
}
.featured_block a {
  font-size: 15px;
  font-weight: 500;
}

.category_block {
  padding: 0.3rem 0.2rem;
}

.faq_block {
  margin: 20px 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  cursor: pointer;
}

.faq_block p,
.faq_block li {
  color: #4b5563;
  font-size: 15px;
}
.faq_block li {
  list-style: none;
}

.faq_block::after {
  content: '\e901';
  font-family: 'iconfont';
  top: 10px;
  right: 10px;
  position: absolute;
  color: inherit;
}
.faq_block p,
.faq_block ul {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq_active p,
.faq_active ul {
  margin: 10px 0;
  height: auto;
}
.faq_active::after {
  content: '\e900';
}

@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
}

@media screen and (max-width: 375px) {
}
