:root {
  --navy: #00370b;
  --navy-deep: #001f07;
  --navy-soft: #06552d;
  --gold: #16965f;
  --gold-light: #79d99f;
  --ink: #061d12;
  --paper: #f3f7ef;
  --paper-warm: #e8f0e3;
  --text: #2b3440;
  --line: rgba(22, 150, 95, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr auto;
  align-items: center;
  min-height: 100px;
  padding: 22px 38px 18px 56px;
  background: linear-gradient(180deg, rgba(0, 22, 7, 0.97), rgba(0, 45, 15, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.brand {
  width: fit-content;
  line-height: 1;
  text-align: left;
}

.brand-name {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: none;
}

.brand-global {
  display: block;
  margin-top: 8px;
  color: #45d884;
  font-size: clamp(0.95rem, 1.12vw, 1.16rem);
  font-weight: 500;
  letter-spacing: 0.36em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  font-size: 0.94rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0 17px;
}

.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a.active::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-light);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--gold);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 30, 8, 0.98) 0%, rgba(0, 45, 16, 0.93) 29%, rgba(0, 52, 19, 0.38) 53%, rgba(0, 18, 7, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 22, 7, 0.04), rgba(0, 0, 0, 0.42)),
    url("assets/hero-boardroom.png") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  padding: 142px 5vw 52px;
}

.hero-copy {
  width: min(680px, 53vw);
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.intro-section h2,
.solutions h2,
.advisory-band h2,
.contact-section h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  line-height: 1.13;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.6vw, 5rem);
}

.hero h1 span {
  color: #8fe3aa;
}

.gold-line {
  width: 116px;
  height: 2px;
  margin: 30px 0 22px;
  background: var(--gold-light);
  box-shadow: 52px 0 0 rgba(121, 217, 159, 0.28);
}

.hero p:not(.hero-kicker) {
  max-width: 590px;
  margin-bottom: 14px;
  color: #f6f8fb;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 214px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button-gold {
  color: #fff;
  background: linear-gradient(135deg, #0f7b4c, #58c784);
  border-color: #58c784;
}

.button-dark {
  background: rgba(0, 35, 12, 0.55);
}

.button span {
  font-size: 1.18rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 22px clamp(28px, 5vw, 96px);
  color: #fff;
  background: linear-gradient(90deg, #002808, #06451e 42%, #00320e);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

.trust-item p {
  color: #eef4f9;
  font-size: 1rem;
  line-height: 1.38;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.icon,
.card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #2faa6f;
}

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

.briefcase::before {
  width: 40px;
  height: 28px;
  bottom: 5px;
  border: 3px solid currentColor;
  border-radius: 4px;
  background:
    linear-gradient(currentColor, currentColor) 50% 50% / 10px 3px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 0 / 3px 100% no-repeat;
}

.briefcase::after {
  width: 18px;
  height: 10px;
  top: 3px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.handshake::before {
  width: 38px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 8px;
  transform: rotate(-25deg);
}

.handshake::after {
  width: 38px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 8px;
  transform: rotate(25deg);
}

.clock::before {
  width: 40px;
  height: 40px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.clock::after {
  width: 17px;
  height: 19px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(4px, -4px);
}

.lock::before {
  width: 32px;
  height: 27px;
  bottom: 4px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.lock::after {
  width: 24px;
  height: 22px;
  top: 2px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.globe::before,
.globe-small::before {
  width: 42px;
  height: 42px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, currentColor 47% 53%, transparent 53%),
    linear-gradient(transparent 47%, currentColor 47% 53%, transparent 53%);
}

.globe::after,
.globe-small::after {
  width: 26px;
  height: 42px;
  border: 2px solid currentColor;
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.section-shell {
  width: min(1390px, calc(100% - 48px));
  margin: 0 auto;
}

.intro-section,
.solutions,
.principles,
.contact-section {
  color: var(--ink);
  background: radial-gradient(circle at top center, #fff 0%, var(--paper) 58%, var(--paper-warm) 100%);
}

.intro-section {
  padding: 72px 0 58px;
  scroll-margin-top: 110px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 8px;
  color: #168457;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.intro-section h2,
.advisory-band h2,
.contact-section h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.intro-copy p,
.advisory-band p,
.contact-section p,
.principle-grid p {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.72;
}

.intro-copy p + p {
  margin-top: 18px;
}

.solutions {
  padding: 22px clamp(22px, 4.5vw, 70px) 64px;
  text-align: center;
  scroll-margin-top: 110px;
}

.solutions h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.title-rule {
  width: 110px;
  height: 2px;
  margin: 12px auto 16px;
  background: var(--gold);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: 1420px;
  margin: 0 auto;
}

.solution-card {
  overflow: hidden;
  min-width: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 34, 47, 0.13);
  box-shadow: 0 16px 30px rgba(25, 17, 8, 0.06);
  text-align: left;
}

.solution-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
}

.card-body {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 168px;
  padding: 18px 18px 20px;
  background: rgba(255, 253, 249, 0.78);
}

.card-body h3 {
  margin: 0;
  color: #101827;
  font-size: 0.96rem;
  line-height: 1.35;
}

.card-body p {
  grid-column: 1 / -1;
  color: #46515d;
  font-size: 0.9rem;
  line-height: 1.54;
}

.card-icon {
  width: 34px;
  height: 34px;
}

.queen-svg svg {
  display: block;
  width: 38px;
  height: 38px;
  color: #2faa6f;
  overflow: visible;
}

.queen-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.people::before,
.family::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: -14px 8px 0 -2px currentColor, 14px 8px 0 -2px currentColor;
}

.people::after,
.family::after {
  width: 32px;
  height: 16px;
  bottom: 2px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.org-svg svg,
.family-care-svg svg {
  display: block;
  color: #2faa6f;
  overflow: visible;
}

.org-svg svg {
  width: 38px;
  height: 38px;
}

.family-care-svg svg {
  width: 43px;
  height: 39px;
}

.org-svg rect,
.org-svg path,
.family-care-svg circle,
.family-care-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document::before {
  width: 24px;
  height: 30px;
  border: 2px solid currentColor;
  background: linear-gradient(currentColor, currentColor) 7px 11px / 11px 2px no-repeat, linear-gradient(currentColor, currentColor) 7px 17px / 11px 2px no-repeat;
}

.document::after {
  top: 2px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: rgba(255, 253, 249, 0.9);
}

.globe-small::before {
  width: 32px;
  height: 32px;
}

.globe-small::after {
  width: 20px;
  height: 32px;
}

.advisory-band {
  padding: 78px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 25, 8, 0.95), rgba(4, 70, 31, 0.92)),
    url("assets/cross-border-globe.png") center / cover no-repeat;
  scroll-margin-top: 110px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 520px);
  gap: clamp(38px, 7vw, 108px);
  align-items: center;
}

.advisory-band .eyebrow,
.advisory-band h2 {
  color: #fff;
}

.advisory-band .eyebrow {
  color: var(--gold-light);
}

.advisory-band p {
  max-width: 690px;
  margin-top: 22px;
  color: #e6edf2;
}

.advisory-panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(0, 28, 9, 0.72);
}

.advisory-panel h3 {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 1.2rem;
}

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

.advisory-panel li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.advisory-panel li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--gold-light);
}

.jurisdictions-section {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #001f07;
}

.jurisdictions-map {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 31, 7, 0.04), rgba(0, 31, 7, 0.16)),
    url("assets/key-jurisdictions-map-clean.png") center / cover no-repeat;
}

.jurisdictions-map::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 50% 9%, rgba(121, 217, 159, 0.13), transparent 24%),
    linear-gradient(90deg, rgba(0, 18, 6, 0.26), transparent 20%, transparent 80%, rgba(0, 18, 6, 0.26));
  pointer-events: none;
}

.jurisdictions-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 56px;
  text-align: center;
}

.jurisdictions-content h2 {
  margin: 0;
  color: #f2e6c9;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.65rem, 3.6vw, 3.15rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jurisdictions-content h2::after {
  display: block;
  width: 260px;
  height: 1px;
  margin: 24px auto 24px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.jurisdictions-content p:not(.eyebrow) {
  max-width: 760px;
  color: #dce9df;
  font-size: 1.02rem;
  line-height: 1.68;
}

.jurisdiction-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.jurisdiction-routes path {
  fill: none;
  stroke: rgba(221, 166, 61, 0.78);
  stroke-width: 0.16;
  filter: drop-shadow(0 0 4px rgba(235, 183, 70, 0.5));
  vector-effect: non-scaling-stroke;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding-left: 24px;
  color: #f3e7ca;
  font-family: Cinzel, Georgia, serif;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.map-pin::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff0a8;
  box-shadow: 0 0 0 5px rgba(121, 217, 159, 0.2), 0 0 24px 9px rgba(246, 194, 94, 0.7);
}

.map-pin strong {
  font-size: clamp(0.92rem, 1.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.map-pin small {
  color: #f7f0d9;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(0.58rem, 0.9vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pin-bvi {
  left: 28%;
  top: 56%;
}

.pin-seychelles {
  left: 57.5%;
  top: 64%;
}

.pin-uae {
  left: 60.5%;
  top: 51%;
}

.pin-singapore {
  left: 75%;
  top: 63%;
}

.pin-thailand {
  left: 77%;
  top: 55%;
}

.pin-hongkong {
  left: 78.5%;
  top: 43%;
}

.principles {
  padding: 76px 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.principle-grid article {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(8, 19, 35, 0.16);
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 2.35rem;
}

.principle-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.contact-section {
  padding: 78px 0 88px;
  border-top: 1px solid rgba(8, 19, 35, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 520px);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.contact-section p {
  max-width: 650px;
  margin-top: 20px;
}

.email-link {
  display: inline-flex;
  margin-top: 24px;
  color: #0d7a4e;
  font-size: 1.08rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(13, 122, 78, 0.34);
}

.address-card {
  padding: 32px;
  color: #fff;
  background: linear-gradient(145deg, #002808, #075332);
  border: 1px solid var(--line);
}

.address-card h3 {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 1rem;
  text-transform: uppercase;
}

.address-card p {
  margin: 0 0 26px;
  color: #eff5f8;
  line-height: 1.62;
}

.address-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  padding: 28px clamp(24px, 5vw, 70px);
  color: #dfe8ee;
  background: #001305;
  border-top: 1px solid rgba(22, 150, 95, 0.36);
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  color: #45d884;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.site-footer p {
  max-width: 900px;
  color: #b7c3cc;
  font-size: 0.86rem;
  line-height: 1.58;
}

/* ==========================================================================
   Preloader Styles 
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy-deep); /* ใช้สีเขียวเข้มธีมเว็บของคุณบังไว้ */
  z-index: 9999; /* อยู่บนสุดของทุกสิ่ง */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

/* ตัวหมุน Loading สีทองตองอ่อนเพื่อให้ยูเซอร์รู้ว่ากำลังโหลด */
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(121, 217, 159, 0.1);
  border-radius: 50%;
  border-top-color: var(--gold-light);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1280px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-body {
    min-height: 140px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 18px 24px;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 20px;
    font-size: 0.82rem;
  }

  .outline-button {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 20px;
  }

  .brand-name {
    font-size: 2.25rem;
  }

  .brand-global {
    margin-left: 0;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 30, 8, 0.96), rgba(0, 40, 14, 0.82)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
      url("assets/hero-boardroom.png") center right / cover no-repeat;
  }

  .hero-content {
    padding: 230px 22px 44px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 10px 22px;
  }

  .trust-item {
    grid-template-columns: 50px 1fr;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .split,
  .advisory-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 19, 35, 0.16);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .jurisdictions-section {
    min-height: 780px;
  }

  .jurisdictions-content {
    padding-top: 44px;
  }

  .jurisdictions-content h2 {
    letter-spacing: 0.08em;
  }

  .map-pin {
    padding-left: 20px;
  }

  .pin-bvi {
    left: 13%;
    top: 58%;
  }

  .pin-seychelles {
    left: 42.5%;
    top: 70%;
  }

  .pin-uae {
    left: 45.5%;
    top: 52%;
  }

  .pin-singapore {
    left: 60%;
    top: 65%;
  }

  .pin-thailand {
    left: 62%;
    top: 58%;
  }

  .pin-hongkong {
    left: 63.5%;
    top: 45%;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 32px, 1390px);
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero p:not(.hero-kicker) {
    font-size: 0.98rem;
  }

  .solutions {
    padding-inline: 16px;
  }

  .solutions h2,
  .intro-section h2,
  .advisory-band h2,
  .contact-section h2 {
    font-size: 1.9rem;
  }

  .jurisdictions-section {
    min-height: 700px;
  }

  .jurisdictions-content p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .map-pin strong {
    font-size: 0.82rem;
  }

  .map-pin small {
    display: none;
  }
}
