:root {
  --green: #165b36;
  --green-dark: #0d3d25;
  --green-light: #eaf5ee;
  --gold: #f6c744;
  --red: #b7332c;
  --cream: #fff8ea;
  --text: #222222;
  --muted: #666666;
  --border: #e2dfd6;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --wu-yellow: #ffd100;
  --wu-black: #080808;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  width: 120px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--green-dark);
}

.main-nav a {
  text-decoration: none;
  padding: 8px 4px;
}

.main-nav a:hover {
  color: var(--red);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.social-icon-link:hover {
  color: var(--red);
}

.facebook-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  padding-top: 5px;
  flex-shrink: 0;
}

.instagram-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
}

h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

h4 {
  color: var(--green-dark);
  margin-bottom: 4px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
}

.hero-actions,
.weekly-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid var(--green);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

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

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

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-section,
.section {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
}

.intro-card,
.contact-card {
  background: var(--green);
  color: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.intro-card h2,
.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.intro-card p,
.contact-card p {
  max-width: 850px;
}

.contact-card .eyebrow {
  color: var(--gold);
}

.section {
  padding: 42px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p {
  color: var(--muted);
}

.weekly-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.pdf-viewer {
  margin-top: 24px;
  width: 100%;
  height: 850px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pdf-viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.department-card,
.service-card,
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.department-card div,
.service-card,
.location-card {
  padding: 20px;
}

.department-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.services-section {
  background: var(--green-light);
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.service-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 38px 44px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}

.western-union-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.service-feature-text {
  max-width: 740px;
}

.service-feature-text h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  margin-bottom: 14px;
}

.service-feature-text p {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service-note {
  margin-bottom: 0;
}

.wu-accent-line {
  width: 84px;
  height: 8px;
  background: var(--wu-yellow);
  border-radius: 999px;
  margin: 0 0 26px;
}

.wu-logo-badge {
  min-width: 270px;
  min-height: 96px;
  background: var(--wu-black);
  border: 5px solid var(--wu-yellow);
  border-radius: 18px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.wu-mark {
  color: var(--wu-yellow);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.12em;
  transform: skew(-10deg);
}

.wu-name {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 0.96;
  font-weight: 900;
}

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

.service-grid-updated .service-card {
  min-height: 190px;
}

.service-card h3 {
  font-size: 1.25rem;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.payment-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #d4e5d9;
  font-weight: 800;
  font-size: 0.92rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}

.location-card a {
  color: var(--green);
  font-weight: 800;
}

.map-wrap {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-section {
  padding-top: 12px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-button {
  min-height: 62px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
  background: var(--cream);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.contact-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex-shrink: 0;
}

.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 28px 16px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  .contact-actions {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    padding: 14px 0;
  }

  .site-logo {
    width: 120px;
  }

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

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

  .western-union-service {
    align-items: flex-start;
  }

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

@media (max-width: 740px) {
  .western-union-service {
    flex-direction: column;
  }

  .wu-logo-badge {
    width: 100%;
    min-width: 0;
  }

  .pdf-viewer {
    height: 650px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 20px, 1180px);
  }

  .site-logo {
    width: 120px;
  }

  .main-nav {
    gap: 10px;
    font-size: 0.92rem;
  }

  .header-socials {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .social-icon-link {
    font-size: 0.95rem;
  }

  .hero,
  .intro-section,
  .section {
    width: min(100% - 20px, 1180px);
  }

  .hero-content,
  .intro-card,
  .weekly-section,
  .contact-card {
    padding: 24px;
    border-radius: 18px;
  }

  .service-feature-card {
    padding: 26px 24px;
    border-radius: 18px;
  }

  .department-grid,
  .service-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .department-card img {
    height: 190px;
  }

  .button,
  .contact-button {
    width: 100%;
  }

  .pdf-viewer {
    height: 560px;
  }
}
