* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

:root {
  --bg: #dcecf6;
  --bg-soft: #edf6fb;
  --bg-panel: rgba(243, 250, 255, 0.78);
  --bg-panel-strong: rgba(228, 241, 249, 0.92);
  --line: rgba(58, 126, 156, 0.12);
  --line-strong: rgba(58, 126, 156, 0.24);
  --text: #1a3a4f;
  --text-soft: #557288;
  --heading: #102a3d;
  --accent: #6ee7ff;
  --accent-strong: #21b8d6;
  --accent-warm: #b9f27c;
  --shadow: 0 24px 60px rgba(36, 86, 112, 0.16);
}

body {
  background:
    radial-gradient(circle at top left, rgba(33, 184, 214, 0.12), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(185, 242, 124, 0.08), transparent 18%),
    linear-gradient(180deg, #f3faff 0%, #e6f2f8 54%, #dcebf4 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: linear-gradient(180deg, rgba(232, 244, 251, 0.95), rgba(232, 244, 251, 0.35) 72%, transparent);
  color: white;
  padding: 18px 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.floating-header {
  position: relative;
  padding: 16px 24px;
  background:
    linear-gradient(180deg, rgba(250, 254, 255, 0.92), rgba(234, 245, 251, 0.96));
  border: 1px solid rgba(125, 180, 206, 0.22);
  border-radius: 28px;
  box-shadow:
    0 26px 60px rgba(41, 95, 124, 0.18),
    0 8px 24px rgba(41, 95, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  pointer-events: none;
}

.floating-header:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 74px rgba(41, 95, 124, 0.2),
    0 10px 26px rgba(41, 95, 124, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

nav h1 {
  font-size: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--heading);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(100%, 250px);
  transform: translateY(3px);
  filter: drop-shadow(0 10px 22px rgba(65, 109, 180, 0.18));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #ffffff 62%, var(--accent-warm));
  color: #05131f;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 28px;
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(231, 242, 251, 0.58);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.24), rgba(255, 255, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 24px rgba(41, 95, 124, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--heading);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.language-switcher a {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.24), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 24px rgba(41, 95, 124, 0.12);
  color: var(--heading);
}

nav a:hover {
  color: #0d3146;
}

.language-switcher {
  display: flex;
  gap: 10px;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.34), rgba(255, 255, 255, 0.95));
}

.language-switcher a:hover {
  transform: translateY(-1px);
}

.hero {
  color: var(--heading);
  padding: 108px 20px 70px;
  background:
    radial-gradient(circle at 18% 18%, rgba(110, 231, 255, 0.22), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(185, 242, 124, 0.16), transparent 16%),
    linear-gradient(135deg, #eefaff 0%, #dff2fb 45%, #cfe8f5 100%);
  border-bottom: 1px solid var(--line);
}

.hero-merge {
  margin-top: -118px;
  padding-top: 206px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  animation: rise-in 0.75s ease both;
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(110, 231, 255, 0.08);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.05;
  max-width: 14ch;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  font-size: 19px;
  max-width: 620px;
  color: var(--text-soft);
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
  justify-content: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.trust-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110, 231, 255, 0.08);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--heading);
}

.hero-panel {
  display: flex;
  justify-content: center;
  width: 100%;
}

.panel-card {
  width: 100%;
  max-width: 400px;
  background:
    linear-gradient(180deg, rgba(248, 253, 255, 0.94), rgba(228, 242, 249, 0.96));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: float-in 0.9s ease both 0.15s;
}

.panel-label {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.panel-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--heading);
}

.panel-text {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.panel-list {
  padding-left: 20px;
  color: var(--text);
}

.panel-list li + li {
  margin-top: 8px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ffffff);
  color: #052033;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 14px 32px rgba(2, 12, 20, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.5));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.94), rgba(236, 246, 251, 0.96));
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--heading);
}

.card p {
  color: var(--text-soft);
}

.card:hover,
.step-card:hover,
.feature-list-box:hover,
.content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(18, 48, 72, 0.11);
}

.section-title {
  font-size: 34px;
  color: var(--heading);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 14px;
}

.section-text {
  font-size: 18px;
  max-width: 650px;
  color: var(--text-soft);
}

.centered-text {
  text-align: center;
  margin: 0 auto 26px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.compliance-box {
  background: linear-gradient(145deg, #ebf8ff, #d9eef8);
  color: var(--heading);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.compliance-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.94), rgba(236, 246, 251, 0.96));
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card h3 {
  color: var(--heading);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-soft);
}

.feature-list-box {
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.94), rgba(236, 246, 251, 0.96));
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.feature-list {
  padding-left: 20px;
  color: var(--text-soft);
}

.feature-list li + li {
  margin-top: 10px;
}

.outro-box {
  margin-top: 28px;
}

.appointment-layout {
  align-items: start;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  background:
    radial-gradient(circle at top right, rgba(185, 242, 124, 0.16), transparent 20%),
    linear-gradient(135deg, #edfaff, #d8edf8);
  color: var(--heading);
  padding: 42px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: var(--text-soft);
}

footer {
  background: linear-gradient(180deg, #d8ebf5, #c9e1ee);
  color: var(--heading);
  padding: 32px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-footer {
  height: 48px;
  max-width: min(100%, 230px);
  margin-bottom: 12px;
  transform: translateY(3px);
}

.footer-brand-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-brand-text {
  color: var(--text-soft);
  max-width: 340px;
}

.footer-heading {
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links p {
  color: #48677d;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(58, 126, 156, 0.16);
  text-align: center;
}

.page-title {
  text-align: center;
  margin: 40px 0 20px;
  color: var(--heading);
}

.content-box {
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.94), rgba(236, 246, 251, 0.96));
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-box p {
  color: var(--text-soft);
}

form {
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.94), rgba(236, 246, 251, 0.96));
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 20px auto 40px;
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--heading);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(231, 242, 251, 0.42);
}

form button {
  background: linear-gradient(135deg, var(--accent), #dffcff);
  color: #052033;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  min-height: 48px;
}

form button:disabled,
form input:disabled,
form textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.success-message {
  background: rgba(185, 242, 124, 0.28);
  color: #31522a;
  padding: 15px;
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  border: 1px solid rgba(185, 242, 124, 0.34);
}

.error-message {
  background: rgba(255, 132, 132, 0.18);
  color: #7f1d1d;
  padding: 15px;
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  border: 1px solid rgba(255, 132, 132, 0.28);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(92%, 720px);
  }

  .hero-grid,
  .split-section,
  .footer-grid {
    flex-direction: column;
  }

  .hero-grid,
  .split-section,
  .footer-grid {
    display: flex;
  }

  nav {
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  nav h1 {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 24px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 48px;
    max-width: min(100%, 220px);
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .nav-right {
    flex: 1 1 420px;
    justify-content: flex-end;
    gap: 12px;
    min-width: 0;
  }

  nav ul {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    gap: 10px 12px;
    min-width: 0;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-merge {
    margin-top: -108px;
    padding-top: 178px;
  }

  .hero h2,
  .section-title,
  .cta-box h2 {
    max-width: none;
  }

  .hero-panel {
    justify-content: stretch;
  }

  .panel-card,
  .cta-box {
    max-width: none;
  }

  .brand {
    justify-content: center;
  }

  .floating-header {
    padding: 14px 18px;
    border-radius: 24px;
  }

  .page-title {
    margin-top: 24px;
  }

  form {
    max-width: none;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  header {
    padding-top: 12px;
  }

  .container {
    width: min(94%, 560px);
  }

  .floating-header {
    padding: 14px;
    border-radius: 22px;
  }

  nav {
    gap: 16px;
  }

  nav h1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .brand-logo {
    height: 42px;
    max-width: min(100%, 210px);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .nav-right {
    width: 100%;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
  }

  nav ul {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 10px 12px;
  }

  nav ul a,
  .nav-cta,
  .language-switcher a {
    font-size: 14px;
    padding: 9px 12px;
  }

  .hero {
    padding: 78px 0 52px;
  }

  .hero-merge {
    margin-top: -92px;
    padding-top: 150px;
  }

  .hero-copy,
  .section-text,
  .cta-box p {
    max-width: none;
  }

  .hero h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .eyebrow,
  .trust-badges span {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
  }

  .panel-card,
  .card,
  .step-card,
  .feature-list-box,
  .content-box,
  .compliance-box,
  .cta-box,
  form {
    padding: 22px;
    border-radius: 20px;
  }

  .panel-card h3,
  .section-title,
  .cta-box h2 {
    font-size: 28px;
  }

  .section {
    padding: 44px 0;
  }

  .page-title {
    margin: 18px 0 16px;
    font-size: 32px;
  }

  .section-text {
    font-size: 17px;
  }

  .cards,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .split-section {
    gap: 20px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-logo {
    align-items: center;
  }

  .brand-logo-footer {
    height: 44px;
    margin-bottom: 10px;
  }

  form input,
  form textarea {
    padding: 14px 12px;
    font-size: 16px;
  }

  form button {
    width: 100%;
  }

  .success-message,
  .error-message {
    margin: 16px auto;
    padding: 14px;
  }
}

@media (max-width: 760px) {
  header {
    padding-top: 12px;
  }

  .floating-header {
    padding: 12px 14px;
    border-radius: 22px;
  }

  nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  nav h1 {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    display: block;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-logo {
    height: 40px;
    max-width: min(100%, 190px);
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(250, 254, 255, 0.98), rgba(234, 245, 251, 0.98));
    border: 1px solid rgba(125, 180, 206, 0.22);
    border-radius: 22px;
    box-shadow:
      0 26px 60px rgba(41, 95, 124, 0.18),
      0 8px 24px rgba(41, 95, 124, 0.1);
    backdrop-filter: blur(20px);
    z-index: 20;
  }

  .nav-right.is-open {
    display: flex;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul a,
  .nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(58, 126, 156, 0.12);
  }

  .language-switcher {
    width: 100%;
    justify-content: stretch;
    gap: 8px;
  }

  .language-switcher a {
    flex: 1 1 0;
    justify-content: center;
    padding: 11px 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(95%, 420px);
  }

  .floating-header {
    padding: 12px;
    border-radius: 20px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-logo {
    height: 36px;
    max-width: min(100%, 170px);
  }

  .brand-tagline {
    display: none;
  }

  .language-switcher {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-right {
    padding: 12px;
    border-radius: 20px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h2 {
    font-size: clamp(30px, 11vw, 40px);
  }

  .hero-lead,
  .section-text {
    font-size: 16px;
  }

  .page-title {
    font-size: 28px;
  }

  .panel-card,
  .card,
  .step-card,
  .feature-list-box,
  .content-box,
  .compliance-box,
  .cta-box,
  form {
    padding: 18px;
  }
}
