/* ==========================================================================
   Base & Resets
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #161616;
  background-image: url("../assets/backgroundLines.png");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  color: #fafafa;
  font-family: "Satoshi", "Poppins", sans-serif;
  font-style: normal;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Container */
.main-content {
  width: 100%;
  position: relative;
  padding-top: 100px;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: transparent;
  box-shadow: none;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 100px;
  gap: 10px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 93px;
  height: 51px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
}

.nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #f2f2f2;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link.active {
  font-weight: 500;
  color: #acea01;
}

.nav-link:hover {
  color: #acea01;
}

.header-right-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.login-link {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login-link:hover {
  color: #acea01;
}

.open-account-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  min-width: 111px;
  height: 39px;
  background: #acea01;
  color: #1d1d1d;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.open-account-btn:hover {
  background: #98ce01;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(172, 234, 1, 0.4);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #acea01;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Mobile Dropdown Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a1c16;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(172, 234, 1, 0.2);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.close-btn {
  background: transparent;
  border: none;
  color: #f2f2f2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.close-btn:hover {
  color: #acea01;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}

.mobile-nav-link {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f2f2f2;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.mobile-nav-link.active {
  color: #acea01;
  font-weight: 700;
}

.mobile-nav-link:hover {
  color: #acea01;
}

.mobile-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  background: #acea01;
  border-radius: 40px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1d;
  text-decoration: none;
  margin-top: 10px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.mobile-cta-button:hover {
  background: #98ce01;
}

/* ==========================================================================
   Risk Insights Section
   ========================================================================== */
.risk-insights-section {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 60px 100px 100px;
}

.risk-insights-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 48px;
}

.risk-insights-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #acea01;
  color: #1d1d1d;
  border-radius: 30px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.risk-insights-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.2;
  color: #acea01;
  margin: 0;
}

.risk-insights-desc {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(250, 250, 250, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.risk-insights-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.risk-insights-item {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-insights-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.risk-item-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 26px;
  color: #acea01;
  margin: 0 0 10px 0;
}

.risk-item-desc {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: rgba(250, 250, 250, 0.75);
  margin: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 100px 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1312px;
  gap: 30px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  width: 100%;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.2em;
  color: #fafafa;
  text-transform: uppercase;
}

.faq-title {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: 54px;
  color: #acea01;
  margin: 0;
}

.faq-description {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fafafa;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
}

.faq-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 40px;
  width: 100%;
  border-bottom: 1px solid #2a2a2a;
  border-radius: 0px;
  cursor: pointer;
  overflow: hidden;
  user-select: none;
  transition:
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 10px 0px;
  gap: 16px;
  color: #fafafa;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    color 0.3s ease,
    font-weight 0.3s ease;
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  display: none !important;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  opacity: 0;
  margin-top: 0px;
  transition:
    grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    margin-top 0.3s ease;
}

.faq-answer-content {
  overflow: hidden;
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.faq-item.active {
  background: #acea01;
  border-bottom: 1px solid transparent;
  border-radius: 14px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(172, 234, 1, 0.25);
}

.faq-item.active .faq-question-btn {
  color: #000000;
  font-weight: 700;
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 10px;
}

.faq-item.active .faq-answer-content {
  color: #000000;
  font-weight: 500;
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  width: 100%;
  background: #131313;
  padding: 80px 0 60px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 314px;
  width: 100%;
}

.footer-brand {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  line-height: 51px;
  color: #acea01;
  margin: 0;
}

.footer-description {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  margin: 0;
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.social-title {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Links Columns */
.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
}

.footer-heading {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  margin: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #fafafa;
  text-decoration: none;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.footer-link:hover {
  color: #acea01;
  opacity: 1;
}

.footer-link.active {
  color: #acea01;
  font-weight: 700;
  opacity: 1;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 40px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 40px;
  }

  .footer-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .footer-col-brand {
    max-width: 100%;
  }

  .footer-col-links {
    width: 100%;
  }
}

/* ==========================================================================
   Account Signup Modal
   ========================================================================== */
.signup-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.signup-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.signup-modal-box {
  position: relative;
  width: 1089px;
  max-width: 96vw;
  max-height: 90vh;
  background: #1d1d1d;
  border: 0.867px solid rgba(118, 118, 128, 0.12);
  border-radius: 20px;
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.signup-modal-box::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.signup-modal-overlay.active .signup-modal-box {
  transform: scale(1);
}

.modal-close-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.modal-close-btn {
  width: 23px;
  height: 23px;
  background: #acea01;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: #98ce01;
}

.modal-close-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.modal-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.modal-left-media {
  flex: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 520px;
}

.modal-hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  transform: rotate(-10deg) scale(1.15);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}

.modal-right-form-wrapper {
  flex: 1;
  max-width: 510px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 35px;
  color: #acea01;
  margin: 0;
}

.modal-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 15.6px;
  line-height: 21px;
  color: #fafafa;
  margin: 0;
}

.modal-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.modal-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.modal-label {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 13.88px;
  line-height: 19px;
  color: #fafafa;
}

.modal-input-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 8.67px;
  width: 100%;
  height: 38.16px;
  background: #252525;
  border: 0.867px solid rgba(60, 60, 67, 0.29);
  border-radius: 8.67px;
}

.input-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8.67px;
  flex: 1;
}

.field-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.7;
}

.modal-input {
  width: 100%;
  height: 100%;
  background: transparent !important;
  border: none;
  outline: none;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #fafafa !important;
  caret-color: #fafafa;
}

.modal-input::placeholder {
  color: rgba(128, 128, 128, 0.55);
}

.modal-input:-webkit-autofill,
.modal-input:-webkit-autofill:hover,
.modal-input:-webkit-autofill:focus,
.modal-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #252525 inset !important;
  -webkit-text-fill-color: #fafafa !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #fafafa;
}

.modal-mobile-input-box {
  padding: 0 4px 0 10px;
}

.country-code-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 10px;
  border-right: 1px solid rgba(60, 60, 67, 0.4);
  height: 24px;
}

.country-code-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #fafafa;
}

.dropdown-arrow-icon {
  width: 10px;
  height: 6px;
}

.mobile-number-field {
  padding-left: 8px;
}

.toggle-password-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.modal-submit-btn {
  width: 100%;
  height: 40px;
  background: #acea01;
  border: 0.867px solid rgba(60, 60, 67, 0.29);
  border-radius: 8.67px;
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1d1d1d;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal-submit-btn:hover {
  background: #98ce01;
  transform: translateY(-1px);
}

.modal-form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.footer-guarantee {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #ffffff;
  margin: 0;
}

.footer-account-switch {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 12.14px;
  color: #ffffff;
  margin: 0;
}

.sign-in-link {
  color: #acea01;
  font-weight: 700;
  text-decoration: none;
}

.sign-in-link:hover {
  text-decoration: underline;
}

.footer-terms {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 12.14px;
  line-height: 16px;
  color: #ffffff;
  margin: 0;
  max-width: 492px;
}

.footer-terms a {
  color: #acea01;
  text-decoration: none;
}

.footer-terms a:hover {
  text-decoration: underline;
}

.modal-error-text {
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #e53935;
  text-align: center;
  min-height: 18px;
  margin: 4px 0;
}

.otp-inputs-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 10px 0;
  width: 100%;
}

.otp-box {
  width: 44px;
  height: 48px;
  background: #252525;
  border: 1px solid rgba(60, 60, 67, 0.4);
  border-radius: 8px;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #acea01;
  outline: none;
}

.resend-wrapper {
  text-align: center;
  margin-bottom: 6px;
}

.resend-link-text {
  color: #acea01;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.back-step-wrapper {
  text-align: center;
  margin-top: 10px;
}

.back-step-btn {
  background: none;
  border: none;
  color: #fafafa;
  font-family: "Satoshi", sans-serif;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.8;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1200px) {
  .header-container {
    padding: 20px 40px;
  }
  .risk-insights-section {
    padding: 40px 40px 80px;
  }
  .risk-insights-title {
    font-size: 34px;
  }
  .faq-section {
    padding: 40px 50px 80px;
  }
}

@media (max-width: 900px) {
  .header {
    height: 80px;
  }
  .header-container {
    padding: 10px 24px;
  }
  .main-content {
    padding-top: 80px;
  }
  .desktop-nav,
  .header-right-actions {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .modal-left-media {
    display: none;
  }
  .risk-insights-section {
    padding: 32px 20px 60px;
  }
  .risk-insights-title {
    font-size: 28px;
  }
  .risk-insights-desc {
    font-size: 15px;
    line-height: 22px;
  }
  .risk-insights-item {
    padding-bottom: 20px;
  }
  .risk-item-title {
    font-size: 16px;
  }
  .risk-item-desc {
    font-size: 14px;
    line-height: 20px;
  }
  .faq-section {
    padding: 32px 20px 60px;
  }
  .faq-title {
    font-size: 28px;
    line-height: 38px;
  }
  .faq-item {
    padding: 10px 20px;
  }
  .faq-item.active {
    padding: 16px 20px;
    border-radius: 10px;
  }
  .faq-question-btn {
    font-size: 15px;
    line-height: 20px;
  }
  .faq-answer-content {
    font-size: 14px;
    line-height: 20px;
  }
}
