:root {
  --navy: #071a35;
  --navy-2: #0e2c58;
  --blue: #1d5fbf;
  --gold: #b88935;
  --gold-2: #d6b46b;
  --ink: #111b2f;
  --muted: #5f6b7c;
  --soft: #f4f7fb;
  --line: #e2e8f0;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 26, 53, .13);
  --radius: 12px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.inner-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, .95);
}
.inner-header-row { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-link { display: flex; align-items: center; gap: 14px; min-width: 280px; }
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0b2449 0%, #1f5fbf 100%);
  box-shadow: 0 12px 26px rgba(29, 95, 191, .24);
  font-weight: 900;
}
.brand-link strong { display: block; font-size: 18px; color: var(--navy); }
.brand-link small { display: block; color: #697586; margin-top: 2px; }
.inner-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.inner-nav a {
  position: relative;
  padding: 12px 0;
  color: #40506a;
  font-size: 14px;
  font-weight: 700;
}
.inner-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transition: transform .2s ease;
}
.inner-nav a:hover,
.inner-nav a.is-active { color: var(--blue); }
.inner-nav a:hover::after,
.inner-nav a.is-active::after { transform: scaleX(1); }
.header-cta {
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0b2449, #1d5fbf);
  box-shadow: 0 14px 30px rgba(29, 95, 191, .2);
  display: grid;
  align-items: center;
}
.header-cta small { color: rgba(255,255,255,.72); font-size: 11px; }
.header-cta strong { font-size: 15px; }
.inner-shell { background: linear-gradient(180deg, #f7f9fc, #fff 380px); min-height: calc(100vh - 124px); }
.page-hero { padding: 54px 0 36px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 30px;
  align-items: center;
}
.hero-copy-block {
  padding: 34px 0;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: .08em;
  font-size: 13px;
  font-weight: 800;
}
.hero-copy-block h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}
.hero-copy-block p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 720px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef4ff;
  color: #234064;
  font-size: 13px;
  font-weight: 700;
}
.hero-media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.hero-media-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.service-ornaments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 18px;
}
.ornament-card,
.ornament-quote,
.ornament-metrics {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(7, 26, 53, .08);
}
.ornament-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-items: center;
}
.ornament-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.ornament-card div { display: grid; gap: 4px; }
.ornament-card strong,
.ornament-quote strong { color: var(--navy); font-size: 20px; }
.ornament-card span,
.ornament-quote span { color: var(--muted); }
.ornament-quote {
  padding: 28px;
  display: grid;
  align-content: center;
  background: linear-gradient(145deg, #0d2447, #17417b);
}
.ornament-quote strong,
.ornament-quote span { color: #fff; }
.ornament-quote.long { min-height: 220px; }
.ornament-metrics {
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.ornament-metrics span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #264064;
  font-weight: 700;
}
.accent-band.dark { background: linear-gradient(180deg, #08192f, #102d55); }
.accent-band.dark img { background: transparent; }
.content-wrap { padding: 12px 0 90px; }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.content-panel,
.side-panel > div,
.contact-info-panel,
.contact-form-panel,
.article-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 48px rgba(7, 26, 53, .08);
}
.content-panel,
.article-panel,
.contact-info-panel,
.contact-form-panel { padding: 34px; }
.content-panel-head h2,
.contact-info-panel h2,
.contact-form-panel h2,
.article-panel h1 {
  margin: 0;
  color: var(--navy);
}
.content-panel-head p { margin: 12px 0 0; color: var(--muted); }
.content-section + .content-section { margin-top: 28px; }
.content-section h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
}
.content-section h4 { margin: 0 0 10px; color: var(--navy); }
.rich-content p,
.rich-content li { color: #43536c; }
.timeline,
.info-grid,
.service-matrix,
.contact-info-grid,
.gallery-grid,
.news-grid {
  display: grid;
  gap: 18px;
}
.timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline article,
.info-grid article,
.service-matrix article,
.gallery-card,
.news-card {
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(184, 137, 53, .16);
  background: linear-gradient(180deg, rgba(255,255,255,.98), #f8fbff);
}
.timeline article span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.info-grid,
.service-matrix,
.contact-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.check-list,
.rich-content ol { margin: 0; padding-left: 20px; }
.side-panel { display: grid; gap: 20px; }
.contact-card,
.side-list-card { padding: 24px; }
.contact-card h3,
.side-list-card h3 { margin: 0 0 12px; color: var(--navy); }
.contact-card p,
.side-list-card a { color: #44556f; }
.contact-card dl { display: grid; gap: 12px; margin: 20px 0; }
.contact-card dt { color: #7a8797; font-size: 12px; }
.contact-card dd { margin: 4px 0 0; color: var(--navy); font-weight: 700; }
.side-button,
.contact-form button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-weight: 700;
}
.side-list-card a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-card h2 { margin: 12px 0; color: var(--navy); font-size: 22px; line-height: 1.4; }
.news-card p { color: var(--muted); }
.news-date { color: var(--gold); font-size: 13px; font-weight: 700; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; padding: 56px 0 90px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 24px;
  color: #728099;
  font-size: 14px;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 26px;
}
.article-cover img { width: 100%; height: 340px; object-fit: cover; }
.article-content p + p { margin-top: 14px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 28px; }
.contact-form { display: grid; gap: 16px; }
.contact-form label span { display: block; margin-bottom: 8px; color: var(--navy); font-weight: 700; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
.alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
}
.alert.success { background: #edf8f0; color: #237648; }
.alert.error { background: #fff4f4; color: #b13838; }
.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid-team {
  max-width: 720px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-card figcaption { padding-top: 12px; display: grid; gap: 6px; }
.team-gallery-section {
  position: relative;
  padding: 28px;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(7, 26, 53, .06), rgba(184, 137, 53, .09)),
    #fff;
}
.team-gallery-section h3 {
  margin-bottom: 20px;
}
.team-gallery-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 6px solid rgba(255, 255, 255, .94);
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 26, 53, .1);
}
.team-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 53, 0), rgba(7, 26, 53, .16)),
    linear-gradient(90deg, rgba(184, 137, 53, .12), rgba(184, 137, 53, 0) 42%);
  pointer-events: none;
}
.team-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .35s ease;
}
.team-gallery-card:hover img {
  transform: scale(1.035);
}
.team-gallery-card-1 {
  grid-column: 1 / -1;
  aspect-ratio: 5 / 3;
}
.team-gallery-card-1 img {
  object-position: center 56%;
}
.team-gallery-card-2,
.team-gallery-card-3,
.team-gallery-card-4,
.team-gallery-card-5 {
  grid-column: auto;
}
.news-summary-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.pagination a {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #274062;
  font-weight: 700;
}
.pagination a.is-active {
  border-color: #0f3768;
  background: #0f3768;
  color: #fff;
}
.side-news-card a { line-height: 1.65; }
.page-company-registration .service-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(213,177,100,.18), transparent 28%),
    linear-gradient(180deg, #f7fbff, #f4f8fd 78%, transparent);
}
.page-company-registration .content-panel { border-top: 6px solid #d5b164; }
.page-company-registration .content-section {
  padding: 24px 26px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(29,95,191,.1);
}
.page-company-registration .content-section:nth-child(odd) {
  border-left: 5px solid #1d5fbf;
}
.page-company-registration .content-section:nth-child(even) {
  border-left: 5px solid #d5b164;
}
.page-company-registration .registration-flow-section {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 30px;
  border-left: 0;
  border-color: rgba(7, 26, 53, .1);
  background:
    linear-gradient(90deg, rgba(7, 26, 53, .96), rgba(13, 48, 90, .9)),
    url("../../img/22.png") center / cover;
  box-shadow: 0 24px 60px rgba(7, 26, 53, .14);
}
.registration-flow-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: start;
  margin-bottom: 30px;
}
.registration-flow-head > div > span {
  display: block;
  margin-bottom: 10px;
  color: #d5b164;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.registration-flow-head h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}
.registration-flow-head h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: #d5b164;
}
.registration-flow-head p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
}
.registration-flow-head aside {
  padding: 16px 18px;
  border: 1px solid rgba(213,177,100,.62);
  border-radius: 12px;
  background: rgba(7,26,53,.42);
}
.registration-flow-head aside strong {
  color: #d5b164;
  font-size: 16px;
}
.registration-flow-head aside p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
}
.registration-flow-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.registration-flow-card {
  position: relative;
  min-height: 210px;
  padding: 38px 18px 20px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 16px 36px rgba(7, 26, 53, .18);
}
.registration-flow-card + .registration-flow-card::before {
  content: "";
  position: absolute;
  top: 58px;
  left: -17px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #d5b164;
}
.registration-flow-card span {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #e3c179, #b88935);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(184,137,53,.28);
}
.registration-flow-card h4 {
  margin: 18px 0 10px;
  color: #12305a;
  font-size: 18px;
}
.registration-flow-card h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #d5b164;
}
.registration-flow-card p {
  margin: 0;
  color: #5f6f86;
  font-size: 14px;
  line-height: 1.7;
}
.registration-flow-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 28px -36px -30px;
  padding: 22px 36px;
  background: rgba(29,95,191,.32);
  border-top: 1px solid rgba(255,255,255,.12);
}
.registration-flow-benefits div {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.registration-flow-benefits strong,
.registration-flow-benefits span {
  display: block;
}
.registration-flow-benefits strong {
  color: #fff;
  font-size: 16px;
}
.registration-flow-benefits span {
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}
.page-bookkeeping .service-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245,249,255,.72) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(245,249,255,.72) 0 1px, transparent 1px),
    #f5f9ff;
  background-size: 44px 44px, 44px 44px, auto;
}
.page-bookkeeping .service-hero::before {
  content: "";
  position: absolute;
  inset: 0 38% 0 0;
  background: linear-gradient(135deg, #071a35 0%, #102f5d 58%, #1d5fbf 100%);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.page-bookkeeping .hero-layout {
  position: relative;
  z-index: 1;
}
.page-bookkeeping .hero-copy-block h1,
.page-bookkeeping .hero-copy-block p,
.page-bookkeeping .hero-copy-block .section-kicker { color: #fff; }
.page-bookkeeping .hero-copy-block h1 { text-shadow: 0 12px 30px rgba(0,0,0,.22); }
.page-bookkeeping .hero-copy-block p { color: rgba(255,255,255,.86); }
.page-bookkeeping .hero-copy-block .section-kicker { color: #f2d58d; }
.page-bookkeeping .hero-tags span {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
}
.page-bookkeeping .hero-media-card {
  border: 8px solid #fff;
  box-shadow: 0 28px 70px rgba(7, 26, 53, .2);
}
.page-bookkeeping .content-panel {
  background: linear-gradient(180deg, #fbfdff, #edf4fd);
}
.page-bookkeeping .timeline article {
  background: linear-gradient(180deg, #0d274a, #163a69);
  border-color: rgba(255,255,255,.08);
}
.page-bookkeeping .timeline article h4,
.page-bookkeeping .timeline article p {
  color: #fff;
}
.page-bookkeeping .timeline article span {
  background: #d5b164;
  color: #0f2d55;
}
.page-bookkeeping .check-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(17,27,47,.14);
}
.page-financial-advisory .service-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(29,95,191,.12), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(213,177,100,.12), transparent 20%),
    linear-gradient(180deg, #f5f8fc, #fff);
}
.page-financial-advisory .service-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-financial-advisory .service-matrix article {
  min-height: 220px;
  border-top: 5px solid #143a6c;
}
.page-financial-advisory .check-list {
  columns: 2;
  column-gap: 28px;
}
.page-team .service-hero {
  background: linear-gradient(180deg, #eef4fb, #f8fbff);
}
.page-team .content-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,249,255,.98));
}
.page-about .service-hero {
  background:
    radial-gradient(circle at 14% 20%, rgba(213,177,100,.14), transparent 24%),
    linear-gradient(180deg, #f7f8fb, #fff);
}
.page-about .content-panel { border-left: 6px solid #12305a; }
.page-about .content-section {
  position: relative;
  padding-left: 34px;
}
.page-about .content-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d5b164, #12305a);
}
.page-about .content-section p {
  font-size: 16px;
  line-height: 1.95;
}
.news-layout { grid-template-columns: minmax(0, 1fr) 300px; }
.empty-state {
  padding: 100px 0;
  text-align: center;
}
.site-footer {
  padding: 56px 0 26px;
  color: rgba(255,255,255,.82);
  background: linear-gradient(135deg, #071a35, #0f2f61);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}
.site-footer h3,
.site-footer h4 { margin: 0 0 12px; color: #fff; }
.site-footer p { margin: 0 0 10px; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 1024px) {
  .page-bookkeeping .service-hero::before {
    inset: 0;
    clip-path: none;
  }
  .page-bookkeeping .hero-media-card {
    border-width: 6px;
  }
  .hero-layout,
  .service-ornaments,
  .content-layout,
  .article-layout,
  .contact-layout,
  .news-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .news-grid,
  .gallery-grid,
  .gallery-grid-team,
  .timeline,
  .info-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .registration-flow-head,
  .registration-flow-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .registration-flow-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .registration-flow-card + .registration-flow-card::before {
    display: none;
  }
  .gallery-grid-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .team-gallery-card,
  .team-gallery-card-1,
  .team-gallery-card-2,
  .team-gallery-card-3,
  .team-gallery-card-4,
  .team-gallery-card-5 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .team-gallery-card img {
    height: 100%;
  }
  .page-financial-advisory .service-matrix {
    grid-template-columns: 1fr;
  }
  .page-financial-advisory .check-list {
    columns: 1;
  }
  .inner-header-row { flex-direction: column; padding: 18px 0; }
  .inner-nav { gap: 12px 18px; }
}

@media (max-width: 680px) {
  .container { width: min(100%, calc(100% - 28px)); }
  .topbar-inner { flex-direction: column; justify-content: center; padding: 8px 0; text-align: center; }
  .content-panel,
  .article-panel,
  .contact-info-panel,
  .contact-form-panel { padding: 24px 20px; }
  .page-company-registration .registration-flow-section {
    padding: 26px 18px 22px;
  }
  .registration-flow-head,
  .registration-flow-cards,
  .registration-flow-benefits {
    grid-template-columns: 1fr;
  }
  .registration-flow-card {
    min-height: 0;
    padding: 34px 18px 18px;
  }
  .registration-flow-benefits {
    margin: 22px -18px -22px;
    padding: 18px;
  }
  .hero-copy-block h1 { font-size: 30px; }
  .hero-media-card img { min-height: 280px; }
  .team-gallery-section {
    padding: 20px;
  }
  .gallery-grid-team {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .team-gallery-card,
  .team-gallery-card-1,
  .team-gallery-card-2,
  .team-gallery-card-3,
  .team-gallery-card-4,
  .team-gallery-card-5 {
    aspect-ratio: 4 / 3;
  }
}

