.subscription-faq-container {
  padding-block: 120px
}

@media screen and (max-width: 768px) {
  .subscription-faq-container {
    padding-block: 100px
  }
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px
}

.faq-tab {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .4);
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s
}

@media screen and (max-width: 768px) {
  .faq-tab {
    font-size: 12px;
    padding: 8px 14px
  }
}

.faq-tab:hover {
  border-color: #cca96a
}

.faq-tab.active {
  background-color: #cca96a;
  border-color: #cca96a;
  color: #222
}

.faq-panel {
  display: none;
  animation: fadeIn .3s ease-out
}

.faq-panel.active {
  display: block
}

.faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden
}

.faq-header {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #fff;
  transition: background-color .2s
}

.faq-header::-webkit-details-marker {
  display: none
}

.faq-header:hover {
  background-color: #f9f9f9
}

.faq-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #000
}

.faq-label {
  font-size: 16px;
  font-weight: 700
}

.faq-question {
  font-size: 15px
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
  transform: rotate(-90deg);
  color: #000
}

.faq-item[open] .faq-icon {
  transform: rotate(0)
}

.faq-body {
  background-color: #fff;
  animation: fadeIn .3s ease-out
}

.faq-body-inner {
  padding: 0 25px 25px;
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid transparent;
  
  a {
    color: #0000EE !important;
    text-decoration: underline !important;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-5px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width: 767px) {
  .faq-header {
    padding: 15px
  }

  .faq-header-content {
    gap: 10px
  }

  .faq-label, .faq-question {
    font-size: 14px
  }
}
