/* =============================================
   PrintingPackingShipping.com - Style
   ============================================= */

:root {
  --brand-blue: #009cbd;
  --brand-blue-dark: #007f9b;
  --brand-blue-deep: #00677e;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.86);
  --panel: rgba(0, 42, 55, 0.26);
  --panel-strong: rgba(0, 32, 44, 0.38);
  --panel-soft: rgba(255, 255, 255, 0.10);
  --line: rgba(255, 255, 255, 0.32);
  --accent: #ffd166;
  --accent-soft: rgba(255, 209, 102, 0.22);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 340px),
    linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue) 48%, var(--brand-blue-dark) 100%);
  color: var(--ink);
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

body,
button,
input,
textarea,
select {
  font-family: Helvetica, Arial, sans-serif;
}

a,
a:visited {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:active {
  color: #fff;
  text-decoration-thickness: 2px;
}

a img {
  border: 0;
}

/* =========================
   Header / Logo
   ========================= */
#logo {
  background: transparent url(images/logo.png) top center no-repeat;
  width: 100%;
  max-width: 600px;
  height: 315px;
  margin: 0 auto;
  background-size: contain;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================
   Navigation
   ========================= */
.site-nav {
  width: calc(100% - 24px);
  max-width: 900px;
  margin: 0 auto 14px;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 45, 58, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(3px);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-nav li {
  margin: 0;
  padding: 0;
}

.site-nav a,
.site-nav a:visited {
  display: inline-block;
  padding: 8px 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);

  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.site-nav a:hover,
.site-nav a:active {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  background: rgba(0, 0, 0, 0.30);
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

/* =========================
   Layout
   ========================= */
#wrap {
  max-width: 940px;
  width: 100%;
  margin: auto;
  padding: 0 12px 30px;
  text-align: center;
}

#content {
  max-width: 820px;
  width: 100%;
  margin: 16px auto 0;
  padding: 18px 20px 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

#content::before {
  content: none;
}

/* =========================
   Modern content cards
   ========================= */
.hero-card,
.content-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hero-card {
  margin: 0 0 20px;
  padding: 18px 20px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 260px),
    var(--panel-strong);
}

.content-card {
  margin: 18px 0;
  padding: 16px 18px 18px;
  background: var(--panel-soft);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.content-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-card > :last-child,
.content-card > :last-child {
  margin-bottom: 0;
}

/* =========================
   Typography
   ========================= */
#content h1,
#content .primary-h1 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

#content h2 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.22;
  margin: 0 0 10px;
  padding: 0 0 8px;
  border-left: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

#content h2:first-of-type {
  margin-top: 0;
}

#content h2 a {
  color: #fff;
  text-decoration: none;
}

#content h3 {
  color: #fff;
  width: 100%;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.3;
  margin: 20px 0 6px;
  padding: 0 0 4px 12px;
  border-left: 3px solid var(--accent-soft);
}

#content p {
  font-size: 17px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0 0 13px;
  padding-left: 0;
  text-align: left;
}

#content strong {
  color: #fff;
}

.hero-card h1 {
  font-size: clamp(22px, 3.4vw, 32px);
}

.hero-card h2 {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 2.8vw, 23px);
}

/* =========================
   Lists
   ========================= */
#content ul {
  margin: 12px 0 22px;
  padding: 0;
}

#content ul:not(.services-list) {
  list-style: none;
}

#content ul:not(.services-list) li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.45;
  text-align: left;
  color: var(--muted);
}

#content ul:not(.services-list) li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

#content ul.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 24px;
  padding: 0;
  text-align: left;
}

#content ul.services-list li {
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 11px 12px 11px 34px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  background: var(--panel-soft);
}

#content ul.services-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

#content ul.services-list a {
  font-weight: 700;
}

/* =========================
   Footer / Disclaimer
   ========================= */
#content .site-footer,
.site-footer {
  width: 100%;
  max-width: 900px;
  margin: 24px auto 0;
  padding: 16px 0 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.30);
}

#content .site-footer::before,
.site-footer::before {
  content: none;
}

#content .site-footer .disclaimer,
.site-footer .disclaimer {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0 0 7px;
  padding: 0;
  line-height: 1.4;
  text-align: center;
}

/* =========================
   Address columns, kept for compatibility
   ========================= */
.address-container {
  display: flex;
  gap: 12px;
  width: 100%;
  margin: 16px auto;
}

.address-column {
  background: var(--panel-soft);
  border-radius: 10px;
  flex: 1 1 0;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.address-column small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
}

/* =========================
   Accessibility
   ========================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  z-index: 9999;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 12px;
  top: 12px;
}

a:focus,
.site-nav a:focus {
  outline: none;
}

a:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* =========================
   Legacy / service-page compatibility
   ========================= */
.site-header {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}

.site-header .logo {
  width: 100%;
  max-width: 900px;
  margin: 10px auto 6px;
  text-align: center;
}

.site-header .logo a,
.site-header .logo a:visited {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
}

.site-header .logo a:hover,
.site-header .logo a:active {
  text-decoration: underline;
}

main.content {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

main.content article {
  max-width: 800px;
  width: 100%;
  margin: 15px auto 0;
  text-align: left;
}

main.content article > header,
main.content article .contact,
#content .intro {
  margin: 10px 0 18px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

#content .intro p {
  margin: 0 0 10px;
  padding-left: 0;
}

#content .section {
  margin: 18px 0 0;
}

main.content article #faq h3 {
  margin-top: 14px;
}

/* =========================
   Mobile
   ========================= */
@media (max-width: 700px) {
  #logo {
    width: 100%;
    height: 200px;
    background-size: contain;
  }

  @supports (aspect-ratio: 1) {
    #logo {
      height: auto;
      aspect-ratio: 600 / 315;
      max-height: 200px;
    }
  }

  .site-nav {
    width: calc(100% - 20px);
    padding: 8px;
  }

  .site-nav ul {
    gap: 7px;
  }

  .site-nav a {
    font-size: 13px;
    padding: 7px 10px;
  }

  #wrap {
    padding: 0 10px 24px;
  }

  #content {
    margin-top: 12px;
    padding: 15px 14px 18px;
    border-radius: 12px;
  }

  .hero-card,
  .content-card {
    padding: 14px;
    border-radius: 12px;
  }

  .content-card:hover {
    transform: none;
  }

  #content h1,
  #content .primary-h1 {
    font-size: 22px;
  }

  #content h2 {
    font-size: 20px;
    margin-top: 0;
  }

  #content p,
  #content ul:not(.services-list) li {
    font-size: 16px;
  }

  #content ul.services-list {
    grid-template-columns: 1fr;
  }

  .address-container {
    flex-direction: column;
  }

  .site-header .logo a {
    font-size: 16px;
  }

  main.content article > header,
  main.content article .contact {
    padding: 10px;
  }
}