:root {
  --nap-blue: #063f52;
  --nap-blue-2: #0c6077;
  --nap-coral: #ef7d63;
  --nap-coral-dark: #c65f49;
  --nap-yellow: #f7c66b;
  --nap-cream: #fff8f1;
  --nap-soft-blue: #eaf7fb;
  --nap-soft-pink: #fff0ec;
  --nap-text: #123443;
  --nap-muted: #637684;
  --nap-border: rgba(6, 63, 82, 0.12);
  --nap-shadow: 0 22px 60px rgba(6, 63, 82, 0.12);
  --nap-radius-lg: 34px;
  --nap-radius-md: 24px;
  --nap-radius-sm: 16px;
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--nap-text);
  background:
    radial-gradient(circle at 12% 6%, rgba(239, 125, 99, 0.13), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(247, 198, 107, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 44%, #f7fbfc 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

p {
  line-height: 1.75;
}

.page-container {
  width: min(var(--page-max), calc(100% - 40px));
  margin-inline: auto;
}

.page-container.narrow {
  width: min(860px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--nap-blue);
  color: #fff;
  border-radius: 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 63, 82, 0.08);
}

.main-nav {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(6, 63, 82, 0.08);
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(6, 63, 82, 0.08);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 220px;
  max-height: 64px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex: 1 1 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}

.nav-links a {
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(18, 52, 67, 0.82);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--nap-soft-blue);
  color: var(--nap-blue);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--nap-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(6, 63, 82, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--nap-blue-2);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 14px;
  background: var(--nap-soft-blue);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--nap-blue);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
  padding: 70px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--nap-soft-blue);
  color: var(--nap-blue);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.eyebrow i {
  color: var(--nap-coral);
}

h1,
h2,
h3 {
  color: var(--nap-blue);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
  font-weight: 950;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 950;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 900;
}

.lead {
  margin: 0;
  max-width: 620px;
  color: var(--nap-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-custom {
  background: var(--nap-coral);
  color: #fff;
  box-shadow: 0 16px 30px rgba(239, 125, 99, 0.28);
}

.btn-secondary-custom {
  background: #fff;
  color: var(--nap-blue);
  border: 1px solid var(--nap-border);
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover {
  transform: translateY(-3px);
}

.btn-primary-custom:hover {
  color: #fff;
  box-shadow: 0 20px 38px rgba(239, 125, 99, 0.36);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
  color: var(--nap-muted);
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line i {
  color: var(--nap-coral);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 12px;
  background: #fff;
  box-shadow: var(--nap-shadow);
  transform: rotate(1.2deg);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 220px;
  height: 220px;
  background: rgba(239, 125, 99, 0.18);
  border-radius: 50%;
  z-index: 1;
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 35px rgba(6, 63, 82, 0.18);
  backdrop-filter: blur(12px);
}

.floating-card strong {
  display: block;
  color: var(--nap-blue);
  font-size: 1.28rem;
  font-weight: 950;
}

.floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--nap-muted);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(234, 247, 251, 0.92), rgba(255, 248, 241, 0.84));
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.section-copy p,
.campaign-text p,
.video-text p,
.contact-card p {
  color: var(--nap-muted);
  font-size: 1.05rem;
}

.section-campaign {
  padding-top: 48px;
}

.campaign-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--nap-radius-lg);
  background:
    radial-gradient(circle at 90% 12%, rgba(247, 198, 107, 0.22), transparent 28%),
    linear-gradient(135deg, var(--nap-blue), #124e5e);
  color: #fff;
  box-shadow: var(--nap-shadow);
}

.campaign-card h2,
.campaign-card p {
  color: #fff;
}

.campaign-card .section-label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.tax-box {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  color: var(--nap-blue);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.tax-box span {
  display: block;
  color: var(--nap-muted);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tax-box strong {
  display: block;
  margin: 10px 0 20px;
  font-size: clamp(2.3rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.copy-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--nap-coral);
  color: #fff;
  font-weight: 950;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.copy-btn:hover {
  background: var(--nap-coral-dark);
  transform: translateY(-2px);
}

.copy-btn.copied {
  background: #249b73;
}

.tax-box small {
  display: block;
  margin-top: 16px;
  color: var(--nap-muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.soft-panel {
  padding: 34px;
  border-radius: var(--nap-radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 125, 99, 0.16), transparent 34%),
    linear-gradient(180deg, #fff, var(--nap-soft-blue));
  border: 1px solid var(--nap-border);
  box-shadow: var(--nap-shadow);
}

.soft-panel p {
  color: var(--nap-muted);
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #fff;
  color: var(--nap-blue);
  font-weight: 850;
}

.mini-list i {
  color: var(--nap-coral);
}

.video-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(239, 125, 99, 0.09), transparent 25%),
    linear-gradient(180deg, #ffffff, #eef9fc);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.video-text {
  padding: 34px;
  border-radius: var(--nap-radius-lg);
  background: #fff;
  border: 1px solid var(--nap-border);
  box-shadow: var(--nap-shadow);
}

.video-text blockquote {
  margin: 0 0 24px;
  padding-left: 20px;
  border-left: 5px solid var(--nap-coral);
  color: var(--nap-blue);
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  line-height: 1.45;
  font-weight: 950;
}

.video-card {
  padding: 14px;
  border-radius: var(--nap-radius-lg);
  background: #fff;
  border: 1px solid var(--nap-border);
  box-shadow: var(--nap-shadow);
}

.video-ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.action-card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--nap-radius-md);
  background: #fff;
  border: 1px solid var(--nap-border);
  box-shadow: 0 14px 34px rgba(6, 63, 82, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.action-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 125, 99, 0.34);
  box-shadow: 0 24px 50px rgba(6, 63, 82, 0.13);
}

.info-card p,
.action-card p {
  color: var(--nap-muted);
  margin-bottom: 0;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--nap-soft-blue);
  color: var(--nap-blue);
  font-size: 1.6rem;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.support-image {
  position: sticky;
  top: 124px;
  overflow: hidden;
  padding: 12px;
  border-radius: var(--nap-radius-lg);
  background: #fff;
  box-shadow: var(--nap-shadow);
}

.support-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
}

.support-list {
  display: grid;
  gap: 16px;
}

.support-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--nap-border);
  box-shadow: 0 12px 28px rgba(6, 63, 82, 0.07);
}

.support-item > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--nap-soft-pink);
  color: var(--nap-coral-dark);
  font-size: 1.45rem;
}

.support-item p {
  margin: 0;
  color: var(--nap-muted);
}

.action-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--nap-coral-dark);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.action-card.primary {
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 198, 107, 0.28), transparent 30%),
    linear-gradient(145deg, var(--nap-blue), #15596c);
}

.action-card.primary h3,
.action-card.primary p,
.action-card.primary span {
  color: #fff;
}

.action-card a {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
}

.section-faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--nap-border);
  box-shadow: 0 10px 24px rgba(6, 63, 82, 0.06);
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--nap-blue);
  font-weight: 950;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--nap-soft-blue);
  color: var(--nap-blue);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
  background: var(--nap-coral);
  color: #fff;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--nap-muted);
}

.contact-section {
  padding-bottom: 96px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--nap-radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 125, 99, 0.16), transparent 30%),
    linear-gradient(180deg, #fff, var(--nap-soft-blue));
  border: 1px solid var(--nap-border);
  box-shadow: var(--nap-shadow);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details p {
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--nap-text);
  font-weight: 750;
}

.contact-details i {
  color: var(--nap-coral);
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--nap-blue);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 34px;
}

.site-footer img {
  width: 250px;
  max-height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--nap-blue);
  color: #fff;
  box-shadow: 0 16px 30px rgba(6, 63, 82, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-sticky-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-primary-custom,
  .btn-secondary-custom,
  .info-card,
  .action-card,
  .nav-cta {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .campaign-card,
  .two-column,
  .video-grid,
  .support-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .support-image {
    position: relative;
    top: auto;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-menu {
    gap: 14px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 96px;
  }

  .site-header {
    padding: 10px 0;
  }

  .page-container,
  .page-container.narrow {
    width: min(100% - 28px, var(--page-max));
  }

  .main-nav {
    min-height: 72px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .brand img {
    width: 176px;
    max-height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 1001;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(6, 63, 82, 0.1);
    box-shadow: 0 20px 45px rgba(6, 63, 82, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--nap-soft-blue);
    font-size: 1rem;
    white-space: normal;
  }

  .nav-cta {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .hero-section {
    padding: 42px 0 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions {
    display: grid;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
  }

  .hero-image-card {
    border-radius: 28px;
    transform: none;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
    background: var(--nap-soft-blue);
  }

  .section {
    padding: 58px 0;
  }

  .campaign-card,
  .soft-panel,
  .video-text,
  .contact-card {
    border-radius: 26px;
    padding: 24px;
  }

  .tax-box {
    padding: 22px;
    border-radius: 24px;
  }

  .tax-box strong {
    font-size: 2.15rem;
    word-break: break-word;
  }

  .video-card {
    padding: 10px;
    border-radius: 26px;
  }

  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .info-card,
  .action-card {
    padding: 24px;
  }

  .support-item {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    gap: 10px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--nap-coral);
    color: #fff;
    text-decoration: none;
    font-weight: 950;
    box-shadow: 0 16px 34px rgba(239, 125, 99, 0.34);
  }

  .scroll-top {
    bottom: 82px;
    right: 18px;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .tax-box strong {
    font-size: 1.82rem;
  }

  .brand img {
    width: 154px;
  }

  .main-nav {
    border-radius: 18px;
  }

  .site-menu {
    border-radius: 18px;
  }
}