*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #444653;
  background: #f8f9ff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-width: 1280px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 89px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 89px;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.header__logo {
  font-size: 24px;
  font-weight: 700;
  color: #002576;
  line-height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 16px;
  line-height: 24px;
  color: #444653;
  transition: color 0.2s;
}

.header__nav-link:hover {
  color: #002576;
}

.header__nav-link--active {
  font-weight: 600;
  color: #002576;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: #ffd31a;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #705b00;
  line-height: 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.header__btn:hover {
  opacity: 0.9;
}

/* FAQ Section */
.faq {
  max-width: 1280px;
  margin: 0 auto;
  padding: 89px 64px 80px;
}

.faq__title {
  font-size: 48px;
  font-weight: 700;
  color: #012e8f;
  text-align: center;
  letter-spacing: -0.96px;
  line-height: 56px;
  margin-bottom: 80px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.faq__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e5eeff;
  border-radius: 12px;
}

.faq__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.faq__icon--lender {
  width: 20px;
  height: 19px;
}

.faq__icon--apply {
  width: 18px;
  height: 16px;
}

.faq__icon--amount {
  width: 22px;
  height: 16px;
}

.faq__icon--term {
  width: 18px;
  height: 20px;
}

.faq__icon--fees {
  width: 16px;
  height: 16px;
}

.faq__icon--review {
  width: 20px;
  height: 18px;
}

.faq__icon--support {
  width: 17px;
  height: 20px;
}

.faq__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.faq__question {
  font-size: 24px;
  font-weight: 600;
  color: #0b1c30;
  letter-spacing: 0.48px;
  line-height: 32px;
}

.faq__divider {
  width: 64px;
  height: 1px;
  background: rgba(0, 50, 138, 0.2);
}

.faq__answer {
  font-size: 18px;
  color: #434653;
  line-height: 29.25px;
  padding-top: 4px;
}

.faq__email {
  color: #00328a;
  text-decoration: underline;
  text-decoration-color: rgba(0, 50, 138, 0.3);
  transition: color 0.2s;
}

.faq__email:hover {
  color: #002576;
}

/* Footer */
.footer {
  background: #213145;
  padding: 42px 80px 33px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__brand {
  max-width: 640px;
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  color: #dce1ff;
  line-height: 32px;
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
  margin-bottom: 24px;
}

.footer__info {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 24px;
}

.footer__info p + p {
  margin-top: 8px;
}

.footer__links-title {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  line-height: 34px;
  margin-bottom: 4px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  line-height: 34px;
}

.footer__links a {
  font-size: 16px;
  color: rgba(211, 228, 254, 0.8);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 33px;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(211, 228, 254, 0.6);
  line-height: 20px;
}
