.acc-section {
  background-color: #f5f5f5 !important;
}

.acc-container {
  width: 100%;
  padding: 92px 16px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 48px;
}

.acc-container h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.1;
  letter-spacing: -3px;
}

.acc-section-wrapper {
  width: 100%;
  max-width: 724px;
}

.acc-section-wrapper > h3 {
  font-size: 17px;
  font-weight: 550;
  color: #1d1d1d;
  margin-bottom: 16px;
  padding-left: 12px;
  position: relative;
  text-align: left;
}

.acc-section-wrapper > h3::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0097b2;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;

  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.03);
}

.accordion-item button {
  font: inherit;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: none;
  text-align: left;
  background-color: transparent;
}

.accordion-item button h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2d2d2d;
  text-align: left;
  margin: 0;
}

.accordion-item button svg {
  width: 24px;
  min-width: 24px;
  transition: all 0.3s;
}

.accordion-item button.active svg {
  transform: rotate(-180deg);
}

.accordion-content {
  padding: 16px;
  border-top: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s;

  display: none;
}

.accordion-content.active {
  display: flex;
}

.accordion-content p {
  font-size: 14px;
  color: #4d4d4d;
  text-align: left;
  margin: 0;
}

/* for mobile */
@media screen and (max-width: 768px) {
  .acc-container {
    padding: 72px 16px;
    gap: 40px;
  }

  .acc-container h2 {
    font-size: 32px;
    letter-spacing: -2px;
    max-width: 300px;
  }

  .acc-section-wrapper > h3 {
    font-size: 16px;
  }
}
