:root {
  --text-color: #363636;
  --text-hover-color: #5f5f5f;

  --main-blue: #2563EB;
  --main-blue-darker: #1D4ED8;

  --accent: #2dd4bf;
}

.site-main {
  font-family: "DM Sans", sans-serif;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero-text {
  flex: 1 1 620px;
  min-width: 320px;
}

.hero-text h1 {
  margin: 0 0 18px 0;
  font-size: 72px;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.02;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  margin: 0 0 34px 0;
  font-size: 22px;
  color: var(--text-hover-color);
  line-height: 1.5;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 44px;
  border-radius: 14px;
  border: 2px solid var(--main-blue);
  color: var(--main-blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, border-color 150ms ease;
}

.hero-button:hover {
  background: var(--main-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-button:active {
  transform: translateY(0);
}

.hero-image {
  flex: 0 1 680px;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: min(680px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .hero-text h1 {
    font-size: 60px;
  }

  .hero-image img {
    width: min(600px, 100%);
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 70px 16px;
    gap: 36px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-text h1 {
    font-size: 40px;
  }

  .hero-button {
    width: 100%;
    padding: 0 18px;
  }
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 26px 0;
  font-size: 18px;
  color: var(--text-hover-color);
}

.hero-star {
  color: #facc15;
  font-size: 22px;
  line-height: 1;
}

.hero-score {
  font-weight: 800;
  color: var(--text-color);
}

.hero-rating-text {
  font-size: 16px;
  color: var(--text-hover-color);
}

@media (max-width: 900px) {
  .hero-rating {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-star {
    font-size: 20px;
  }
}



.info-order {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px 90px 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-bottom: 52px;
}

.info-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--main-blue);
  background: rgba(37, 99, 235, 0.08);
  margin-bottom: 18px;
}

.info-icon svg {
  width: 40px;
  height: 40px;
}

.info-title {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 900;
  color: #111111;
}

.info-text {
  margin: 0;
  font-size: 16px;
  color: var(--text-hover-color);
  line-height: 1.55;
}

.order-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: #111111;
  margin: 0 0 26px 0;
  letter-spacing: -0.3px;
}

.order-action {
  display: flex;
  justify-content: center;
}

.order-btn {
  width: min(100%, 1200px);
  height: 64px;
  border-radius: 14px;
  border: 2px solid var(--main-blue);
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, border-color 150ms ease;
}

.order-btn:hover {
  background: var(--main-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

.order-btn:active {
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .order-heading {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .info-order {
    padding: 26px 16px 70px 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .info-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .order-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .order-btn {
    height: 58px;
    letter-spacing: 2px;
  }
}

@media (max-width: 420px) {
  .order-btn {
    height: 56px;
    letter-spacing: 1.4px;
  }
}


.help-area {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 20px 40px 20px;
  font-family: "DM Sans", sans-serif;
}

.help-head {
  text-align: center;
  margin-bottom: 46px;
}

.help-eyebrow {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--main-blue);
  text-transform: uppercase;
}

.help-title {
  margin: 0 0 12px 0;
  font-size: 40px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.3px;
}

.help-subtitle {
  margin: 0;
  font-size: 16px;
  color: var(--text-hover-color);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.help-card {
  border-radius: 26px;
  padding: 28px 28px 26px 28px;
  color: #ffffff;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
  position: relative;
  overflow: hidden;
}

.help-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 55%);
  transform: rotate(12deg);
  pointer-events: none;
}

.help-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.help-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.help-card-title {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.help-card-text {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.help-cta {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  position: relative;
  z-index: 1;
}

.help-cta:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
}

.help-card--blue {
  background: linear-gradient(135deg, var(--main-blue), #3b82f6);
}

.help-card--navy {
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

.help-card--sky {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.help-card--mix {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

@media (max-width: 900px) {
  .help-area {
    padding: 70px 16px 20px 16px;
  }

  .help-title {
    font-size: 32px;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .help-card {
    min-height: 0;
  }

  .help-cta {
    min-height: 52px;
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .help-title {
    font-size: 28px;
  }

  .help-card {
    padding: 22px 18px 18px 18px;
    border-radius: 22px;
  }
}


.steps {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 20px 40px 20px;
  font-family: "DM Sans", sans-serif;
}

.steps-head {
  text-align: center;
  margin-bottom: 48px;
}

.steps-eyebrow {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--main-blue);
  text-transform: uppercase;
}

.steps-title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.3px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.step-card {
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  padding: 34px 26px;
  text-align: center;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px auto;
  color: var(--main-blue);
  background: rgba(37, 99, 235, 0.10);
}

.step-icon svg {
  width: 40px;
  height: 40px;
}

.step-icon--bubble {
  position: relative;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--main-blue);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 14px;
}

.step-title {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 900;
  color: #111111;
}

.step-text {
  margin: 0;
  font-size: 16px;
  color: var(--text-hover-color);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .steps {
    padding: 70px 16px 20px 16px;
  }

  .steps-title {
    font-size: 32px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-card {
    padding: 26px 18px;
    border-radius: 22px;
  }
}

@media (max-width: 420px) {
  .steps-title {
    font-size: 28px;
  }
}

.metrics {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 40px 20px;
}

.metrics-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  border-radius: 28px;
  padding: 36px;
}

.metric {
  text-align: center;
  padding: 24px 16px;
}

.metric-value {
  font-size: 56px;
  font-weight: 900;
  color: var(--main-blue);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 14px;
  color: var(--text-hover-color);
}

.metric--highlight {
  background: linear-gradient(135deg, var(--main-blue), #3b82f6);
  border-radius: 20px;
  color: #ffffff;
}

.metric--highlight .metric-value,
.metric--highlight .metric-label,
.metric--highlight .metric-desc {
  color: #ffffff;
}

.metric--highlight .metric-desc {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .metrics {
    padding: 60px 16px 20px 16px;
  }

  .metrics-inner {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }

  .metric-value {
    font-size: 48px;
  }
}

.metrics-intro {
  max-width: 820px;
  margin: 60px auto 12px auto;
  text-align: center;
  padding: 0 20px;
}

.metrics-eyebrow {
  margin: 0 0 10px 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--main-blue);
}

.metrics-title {
  margin: 0 0 14px 0;
  font-size: 32px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.3px;
}

.metrics-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-hover-color);
}

@media (max-width: 900px) {
  .metrics-title {
    font-size: 26px;
  }

  .metrics-text {
    font-size: 15px;
  }
}

.team {
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 20px 40px;
  font-family: "DM Sans", sans-serif;
}

.team-wrap {
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 64px;
}

/* LEWA STRONA */

.team-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.team-photo {
  width: 100%;
  max-width: 520px;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;

  background: radial-gradient(circle at 30% 15%, rgba(37, 99, 235, 0.14), transparent 60%),
              linear-gradient(180deg, #eef3fb, #e8eef8);

  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
  border: 1px solid rgba(17, 24, 39, 0.06);

  position: relative;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 45%, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
  transform: none;
  filter: saturate(1.02) contrast(1.03);
}

.team-badge {
  position: absolute;
  left: 28px;
  bottom: -34px;
  width: 360px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.team-badge-title {
  font-size: 26px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.3px;
}

.team-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--main-blue);
  display: grid;
  place-items: center;
}

.team-badge-icon svg {
  width: 28px;
  height: 28px;
}

/* PRAWA STRONA */

.team-right {
  padding-top: 10px;
}

.team-eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--main-blue);
}

.team-title {
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.4px;
}

.team-text {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-hover-color);
  max-width: 640px;
}

.team-points {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.team-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #111111;
}

.team-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--main-blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.team-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 2px solid var(--main-blue);
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.6px;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.team-cta:hover {
  background: var(--main-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .team-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .team-photo {
    max-width: 640px;
    height: 420px;
  }

  .team-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .team-right {
    text-align: center;
  }

  .team-text {
    margin-left: auto;
    margin-right: auto;
  }

  .team-point {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .team {
    padding: 70px 16px 20px;
  }

  .team-title {
    font-size: 34px;
  }

  .team-photo {
    height: 360px;
    border-radius: 22px;
  }

  .team-badge {
    width: min(92vw, 380px);
  }

  .team-cta {
    width: 100%;
  }
}

.about {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 20px;
  font-family: "DM Sans", sans-serif;
}

.about-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* GÓRNY EYEBROW */

.about-eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--main-blue);
}

/* TYTUŁ */

.about-title {
  margin-bottom: 28px;
  font-size: 42px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.4px;
}

/* TEKST */

.about-text {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* PRZYCISK */

.about-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-radius: 14px;
  border: 2px solid var(--main-blue);
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.6px;
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.about-cta:hover {
  background: var(--main-blue);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

/* RESPONSIVE */

@media (max-width: 640px) {
  .about {
    padding: 90px 16px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-cta {
    width: 100%;
  }
}

.trust {
  position: relative;
  margin-top: 60px;
  padding: 120px 20px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.06),
    rgba(37, 99, 235, 0.02)
  );
  font-family: "DM Sans", sans-serif;
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12), transparent 55%);
  pointer-events: none;
}

.trust-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* EYEBROW */

.trust-eyebrow {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--main-blue);
}

/* TYTUŁ */

.trust-title {
  margin-bottom: 26px;
  font-size: 44px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.4px;
}

/* TEKST */

.trust-text {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* WYRÓŻNIK */

.trust-highlight {
  margin: 0 auto;
  padding: 28px 36px;
  max-width: 420px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--main-blue);
  line-height: 1;
}

.trust-number span {
  font-size: 24px;
  font-weight: 700;
  color: #64748b;
}

.trust-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* RESPONSIVE */

@media (max-width: 640px) {
  .trust {
    padding: 90px 16px;
  }

  .trust-title {
    font-size: 32px;
  }

  .trust-text {
    font-size: 15px;
  }

  .trust-number {
    font-size: 52px;
  }
}

.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 110px 20px 60px;
  font-family: "DM Sans", sans-serif;
}

.faq-head {
  text-align: center;
  margin-bottom: 52px;
}

.faq-eyebrow {
  margin: 0 0 12px 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--main-blue);
}

.faq-title {
  margin: 0 0 14px 0;
  font-size: 44px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.4px;
}

.faq-subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.18);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 26px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.18);
  position: relative;
  flex: 0 0 36px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--main-blue);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
  transition: max-height 260ms ease, padding 220ms ease;
}

.faq-item[aria-expanded="true"] .faq-a {
  padding: 0 26px 26px 26px;
  max-height: 320px;
}

.faq-item[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

@media (max-width: 700px) {
  .faq {
    padding: 90px 16px 40px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-q {
    font-size: 16px;
    padding: 22px 18px;
  }

  .faq-a {
    padding: 0 18px;
  }

  .faq-item[aria-expanded="true"] .faq-a {
    padding: 0 18px 18px 18px;
    max-height: 420px;
  }
}
