
  body {
    padding-top: 0 !important;
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: #f6f4ef;
  }

  #header {
    position: static;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }

  #main {
    background: #f6f4ef;
  }

  #banner {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 9rem 0 4.5rem;
    min-height: 33vh;
    display: flex;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(10, 22, 40, 0.82) 0%, rgba(18, 41, 70, 0.66) 38%, rgba(18, 41, 70, 0.33) 100%),
      url("../../images/homepage-img1.webp") center center / cover no-repeat;
  }

  #banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 16, 31, 0.18) 0%, rgba(8, 16, 31, 0.35) 100%);
    pointer-events: none;
  }

  #banner .banner-inner {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 3rem));
    margin: 0 auto 2rem auto;
  }

  #banner .banner-copy {
    max-width: 52rem;
  }

  #banner .banner-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d9e8f7;
  }

  #banner h1 {
    margin: 0;
    border: 0;
    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  #banner .banner-subtitle {
    margin: 1.15rem 0 0;
    max-width: 44rem;
    font-size: clamp(1rem, 1.4vw, 1.28rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
  }

  .weed-wrap {
    width: min(1280px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 3rem 0 4rem;
  }

  .content-section {
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 2rem;
  }

  .content-section h2,
  .content-section h3 {
    color: #335370;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    border: 0;
  }

  .content-section p,
  .content-section li {
    color: #14212b;
    line-height: 1.75;
  }

  .content-card {
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 2rem;
    border: 1px solid #d8e0ea;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(19, 40, 63, 0.08);
  }

  .section-eyebrow {
    margin: 0 0 0.65rem;
    color: #335370;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .content-card h2,
  .content-card h3 {
    color: #335370;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    border: 0;
  }

  .content-card p,
  .content-card li {
    color: #14212b;
    line-height: 1.75;
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .button-row .button,
  .button-row .special {
    margin: 0;
  }

  .guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .guide-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #5f9dd2;
    border-radius: 1rem;
    background: #f9f9f9;
    color: #335370;
    text-decoration: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.18);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    overflow: hidden;
  }

  .guide-card:hover,
  .guide-card:focus {
    transform: translateY(-9px);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.35);
    color: #192936;
    text-decoration: none;
  }

  .guide-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .guide-card-body {
    padding: 1.25rem;
    text-align: center;
  }

  .guide-card-body h3 {
    margin: 0;
    color: #335370;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .contact-card,
  .link-card {
    border: 1px solid #5f9dd2;
    border-radius: 1rem;
    background: #f9f9f9;
    padding: 1.2rem;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.14);
  }

  .contact-card strong {
    display: block;
    color: #13283f;
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .link-card ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .link-card li + li {
    margin-top: 0.65rem;
  }

  .video-wrap {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #d8e0ea;
    background: #000;
  }

  .video-wrap video {
    display: block;
    width: 100%;
    height: auto;
  }

  a {
    color: #22537e;
  }

  a:hover {
    color: #1c3552;
    text-decoration: none;
  }

  @media (max-width: 1100px) {
    #banner {
      padding-top: 8rem;
    }

    .guide-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    #banner {
      min-height: 45vh;
      padding: 7.5rem 0 3.25rem;
    }

    #banner .banner-inner,
    .weed-wrap {
      width: min(100%, calc(100% - 2rem));
    }

    .guide-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 520px) {
    #banner {
      padding: 7rem 0 2.75rem;
    }
  }
