:root {
  color-scheme: light;
  --navy: #1E3653;
  --navy-dark: #14283f;
  --cream: #F7F4EE;
  --green: #566B57;
  --green-dark: #425341;
  --gold: #B9965A;
  --charcoal: #2E3438;
  --muted: #64707a;
  --white: #FFFFFF;
  --line: #e2ddd3;
  --soft: #eef1eb;
  --shadow: 0 22px 60px rgba(30, 54, 83, 0.12);
  --small-shadow: 0 12px 30px rgba(30, 54, 83, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.4vw, 52px);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 36px);
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

p {
  color: var(--muted);
}

ul {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

dt {
  color: var(--navy);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.outline,
.button.outline-dark {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.outline:hover,
.button.outline-dark:hover {
  border-color: var(--gold);
}

.button.ghost {
  color: var(--green);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button.full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 13px clamp(18px, 4vw, 52px);
  background: rgba(247, 244, 238, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(30, 54, 83, 0.06);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: min(340px, 42vw);
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  color: #52616c;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--navy);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.phone-icon {
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 68px) 0;
}

.hero-copy-block {
  max-width: 650px;
}

.hero-sub {
  max-width: 560px;
  margin-bottom: 26px;
  color: #4f5c65;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: center;
}

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 76px;
  padding: 14px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--gold);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.about {
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.about-text .lead {
  color: var(--charcoal);
  font-size: 19px;
}

.cta-inline,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-image-block {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.fee-card,
.price-card,
.why-panel,
.contact-panel,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--small-shadow);
}

.service-card {
  padding: 28px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(86, 107, 87, 0.38);
  box-shadow: 0 28px 64px rgba(30, 54, 83, 0.15);
}

.service-card.featured {
  grid-column: 1 / -1;
  padding: 34px;
  background: #f2f5ef;
  border-top: 6px solid var(--green);
  border-color: #d8ded4;
}

.service-card.featured p {
  font-size: 16px;
}

.service-card p,
.service-card ul {
  color: var(--muted);
  font-size: 15px;
}

.image-copy-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.image-copy-section > div {
  max-width: 650px;
}

.image-copy-section figure,
.contact-image {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--small-shadow);
}

.image-copy-section img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: center;
}

.banner-cta {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.banner-cta img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.card-heading,
.audience-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-heading h3,
.audience-heading h3 {
  margin-bottom: 0;
}

.card-icon,
.mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--green);
  background: var(--cream);
  border: 1px solid rgba(185, 150, 90, 0.5);
  border-radius: 10px;
}

.mini-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
}

.card-icon::before,
.card-icon::after,
.mini-icon::before,
.mini-icon::after {
  position: absolute;
  content: "";
}

.icon-document::before {
  width: 17px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon-document::after {
  width: 10px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.icon-courthouse::before {
  width: 2px;
  height: 16px;
  background: currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: -8px 0 0 currentColor, 8px 0 0 currentColor;
}

.icon-courthouse::after {
  top: 10px;
  width: 0;
  height: 0;
  border-right: 13px solid transparent;
  border-bottom: 8px solid currentColor;
  border-left: 13px solid transparent;
}

.icon-route::before {
  width: 24px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-route::after {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 17px -12px 0 currentColor;
}

.icon-key::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-5px);
}

.icon-key::after {
  width: 17px;
  height: 2px;
  background: currentColor;
  transform: translate(7px, 2px);
  box-shadow: 8px 4px 0 -1px currentColor;
}

.icon-hand::before {
  width: 21px;
  height: 13px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.icon-hand::after {
  width: 8px;
  height: 13px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateY(-7px);
}

.icon-care::before {
  width: 20px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(42% 0, 58% 0, 58% 36%, 94% 36%, 94% 54%, 58% 54%, 58% 100%, 42% 100%, 42% 54%, 6% 54%, 6% 36%, 42% 36%);
}

.icon-home::before {
  width: 20px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: translateY(4px);
}

.icon-home::after {
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, 2px);
}

.icon-field::before {
  width: 24px;
  height: 16px;
  border-bottom: 2px solid currentColor;
  border-radius: 50%;
}

.icon-field::after {
  width: 2px;
  height: 22px;
  background: currentColor;
  box-shadow: -7px 5px 0 -0.5px currentColor, 7px 5px 0 -0.5px currentColor;
  transform: rotate(16deg);
}

.icon-briefcase::before {
  width: 23px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translateY(3px);
}

.icon-briefcase::after {
  width: 10px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  transform: translateY(-9px);
}

.audiences-section {
  width: min(1160px, calc(100% - 36px));
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.audience-card {
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-card:nth-child(3n) {
  border-right: 0;
}

.audience-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.fees-section {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1160px) / 2));
  padding-left: max(18px, calc((100% - 1160px) / 2));
  background: #f1ede5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fee-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(240px, 0.72fr) minmax(290px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.fees-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 10px;
}

.fees-intro .button {
  margin-top: 10px;
}

.fee-card {
  padding: 30px;
}

.fee-card.primary-fee {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 22px 52px rgba(86, 107, 87, 0.22);
}

.fee-card.primary-fee h3,
.fee-card.primary-fee dt,
.fee-card.primary-fee dd {
  color: var(--white);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 54, 83, 0.12);
}

.primary-fee .fee-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.fee-row:last-child {
  border-bottom: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.price-card {
  padding: 26px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.price-card.highlight {
  background: #fbf7ed;
}

.price-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.premium-services {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: 18px;
  padding: clamp(28px, 5vw, 44px);
  color: var(--white);
  background: var(--navy);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.premium-services h2,
.premium-services h3 {
  color: var(--white);
}

.premium-services p {
  color: rgba(255, 255, 255, 0.76);
}

.premium-services .eyebrow {
  color: #e8cf96;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.premium-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.premium-grid h3 {
  font-size: 20px;
}

.coverage-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  align-items: start;
}

.coverage-text > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.coverage-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.coverage-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.why-panel {
  margin-top: 45px;
  padding: 32px;
}

.why-panel h3 {
  color: var(--green);
}

.why-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 10px;
  color: var(--charcoal);
  font-size: 15px;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.faq-section .section-heading {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--navy);
  cursor: pointer;
  font-family: "DM Sans", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.contact-text p {
  color: var(--muted);
  font-size: 17px;
}

.contact-image {
  margin-top: 28px;
}

.contact-image img {
  width: 100%;
  max-height: 210px;
  object-fit: cover;
  object-position: center;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}

.contact-details {
  margin-top: 8px;
}

.contact-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row dd {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
}

.contact-row a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 52px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.footer-brand img {
  width: min(360px, 70vw);
}

.footer-brand p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--navy);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
  }

  .brand-logo {
    width: min(290px, 58vw);
  }

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

  .premium-services {
    grid-template-columns: 1fr;
  }

  .audience-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .audience-card:nth-child(2n) {
    border-right: 0;
  }

  .audience-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .audience-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fee-layout {
    grid-template-columns: 1fr 1fr;
  }

  .fees-intro {
    grid-column: 1 / -1;
    padding-right: 0;
  }

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

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    display: flex;
    gap: 10px;
    padding: 12px 18px 14px;
  }

  .brand-logo {
    width: min(300px, 82vw);
  }

  nav {
    gap: 8px 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .header-phone,
  .button,
  .hero-actions .button,
  .cta-inline .button,
  .section-cta .button {
    width: 100%;
  }

  .header-phone {
    min-height: 44px;
  }

  .hero-inner,
  .image-copy-section,
  .premium-services,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 30px 0 34px;
  }

  h1,
  .hero-inner h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 9vw, 38px);
  }

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

  .hero-actions {
    gap: 10px;
  }

  .hero-photo img {
    aspect-ratio: 1 / 0.78;
  }

  .trust-bar-inner,
  .split,
  .service-grid,
  .audience-grid,
  .fee-layout,
  .price-grid,
  .coverage-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .about-image-block {
    order: -1;
    max-width: 520px;
  }

  .service-card.featured {
    grid-column: auto;
  }


  .audience-card,
  .audience-card:nth-child(2n),
  .audience-card:nth-child(3n),
  .audience-card:nth-last-child(-n + 2),
  .audience-card:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-card:last-child {
    border-bottom: 0;
  }

  .why-panel {
    margin-top: 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  h1,
  .hero-inner h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 29px;
  }

  .service-card,
  .audience-card,
  .fee-card,
  .price-card,
  .why-panel,
  .contact-panel {
    padding: 22px;
  }
}
