
    :root {
      --a1-red: #e53935;
      --a1-dark: #111827;
      --a1-light: #f7f7f7;
      --a1-green: #005c34;
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #222;
      background: #ffffff;
      line-height: 1.6;
    }

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

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

    /* Top info bar */
    .top-bar {
      background: var(--a1-dark);
      color: #ffffff;
      font-size: 0.9rem;
    }

    .top-bar-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.5rem 1rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.5rem;
      align-items: center;
    }

    .top-bar span {
      white-space: nowrap;
    }

    .top-bar .phone a {
      font-weight: 600;
      color: #fff;
    }

    /* Main navigation */
    header {
      border-bottom: 1px solid #e5e7eb;
      background: #ffffff;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    nav {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.75rem 1rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      font-size: 0.98rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    nav a {
      padding-bottom: 0.2rem;
      border-bottom: 2px solid transparent;
    }

    nav a:hover,
    nav a:focus {
      border-color: var(--a1-red);
      color: var(--a1-red);
    }

    nav a.is-active {
      border-color: var(--a1-red);
      color: var(--a1-red);
    }

    /* Logo */
    .logo-section {
      padding: 1.5rem 1rem 1rem;
      text-align: center;
    }

    .logo-section img {
      max-width: 260px;
      margin: 0 auto;
    }

    /* Main layaway content */
    .main-section {
      padding: 3rem 1rem 4rem;
    }

    .main-inner {
      max-width: var(--max-width);
      margin: 0 auto;
    }

    .page-title {
      font-size: clamp(1.9rem, 2.4vw, 2.2rem);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .title-rule {
      width: 60px;
      height: 2px;
      background: #111827;
      margin-bottom: 2rem;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 2.5rem;
      align-items: flex-start;
    }

    .content-grid p {
      margin-bottom: 1rem;
      font-size: 0.98rem;
    }

    .content-grid ul {
      margin: 0 0 1.25rem 1.25rem;
      font-size: 0.97rem;
    }

    .content-grid li {
      margin-bottom: 0.4rem;
    }

    .subheading {
      font-weight: 600;
      margin: 1.5rem 0 0.5rem;
      font-size: 1.02rem;
    }

    /* Side card */
    .info-card {
      background: #f9fafb;
      border-radius: 12px;
      padding: 1.5rem 1.4rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
      font-size: 0.95rem;
    }

    .info-card h2 {
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.8rem;
    }

    .info-card strong {
      font-weight: 600;
    }

    .info-row {
      margin-bottom: 0.5rem;
    }

    .info-row span.label {
      font-weight: 600;
    }

    .holiday-note {
      margin-top: 1rem;
      padding-top: 0.75rem;
      border-top: 1px dashed #d1d5db;
      font-size: 0.9rem;
    }

    /* Simple footer */
    footer {
      background: #000000;
      color: #9ca3af;
      font-size: 0.85rem;
      padding: 1.2rem 1rem;
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.5rem;
      align-items: center;
    }

    .footer-inner a {
      color: #e5e7eb;
    }

    @media (max-width: 768px) {
      nav {
        gap: 1rem;
        font-size: 0.86rem;
      }

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