body {
    background-color: #e9f4ff;
    font-family: 'Roboto', Arial, sans-serif;
    color: #222;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
}

.hero {
    color: #fff;
    padding: 3.5rem 1.5rem;
    text-align: center;
    position: relative;
    background-color: #123;
    /* or clamp with responsive units */
    display: flex;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.hero>.container {
    position: relative;
    z-index: 2;
}

.hero h1,
.lead {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    /* soft black glow */
}

@media (max-width: 768px) {
    .hero {
        display: none;
    }

    body {
        margin-top: 0;
    }

    main {
        padding-top: 2rem;
    }
}

.main_crumb {
    background-color: #f8f9fa;
}

.article-box,
.states-box,
.sidebar-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.state-list {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    column-gap: 1.25rem;
    padding-left: 1rem;
}

.state-list li {
    margin-bottom: 0.5rem;
}

.state-list a {
    color: #0b5ed7;
    text-decoration: none;
}

.state-list a:hover {
    text-decoration: underline;
}

/* Darker, easy-on-eyes link color */
.states-box a {
    color: #1a4d8f;
    text-decoration: none;
}

.states-box a:hover {
    text-decoration: underline;
}

/* Extra spacing between state links (applies to the column wrappers) */
.states-box .col-lg-4,
.states-box .col-md-6,
.states-box .col-12 {
    margin-bottom: 0.75rem;
}

.resource-grid {
    display: grid;
    gap: 0.75rem;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: #f9f9f9;
    color: #222;
    font-weight: 500;
}

.resource-link .icon {
    font-size: 1.25rem;
    line-height: 1;
}

footer {
    background: #111;
    color: #cfcfcf;
    padding: 1.25rem;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Custom SNAP button */
.btn-snap {
    background-color: #ff7a1a;
    /* warm orange like hover links */
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-snap:hover {
    background-color: #e06712;
    /* slightly darker orange on hover */
    color: #fff;
}

/* Sidebar helper text */
.helper-text {
    font-size: 0.8rem;
    /* smaller than normal small */
    color: rgba(0, 0, 0, 0.30);
    /* more transparent */
}

.footer-muted,
.footer-muted a {
    color: rgba(255, 255, 255, 0.55) !important;
    /* same as navbar link */
}

.footer-muted a:hover {
    color: #fff !important;
    /* brighten on hover */
}

#applyFaqs {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.top-cities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
    text-decoration: none;
    color: #333;
    transition: all 0.15s ease;
}

.top-city-item:hover {
    background: #f5f7ff;
    transform: translateX(2px);
}

.city-icon {
    font-size: 18px;
    margin-right: 4px;
}

.city-name {
    font-weight: 600;
}

.city-count {
    font-size: 12px;
    color: #666;
}

#storeAccordion .accordion-body {
  content-visibility: auto;
  contain-intrinsic-size: 72px;
}

/* Media Queries */
@media (min-width: 768px) {
    body {
        padding-top: 56px;
        /* only add offset when hero shows */
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 0;
        /* no gap since hero is hidden */
    }
}

@media (min-width: 992px) {
    .article-box .resource-link {
        margin-bottom: 0.15rem;
    }

    .article-box .resource-link:last-child {
        margin-bottom: 0;
    }

    .navbar-nav {
        display: flex;
        justify-content: flex-end;
        /* align items to the right */
    }

    .navbar-nav .nav-item:not(:last-child) .nav-link {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        /* subtle white line */
        padding-right: 1rem;
        margin-right: 1rem;
    }

    .navbar-nav .nav-item {
        flex: 0 0 auto;
        /* shrink to fit content, no stretching */
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        font-family: 'Oswald', sans-serif;
        transition: background-color 0.2s ease, color 0.2s ease;
        text-transform: uppercase;
        font-weight: 400;
        /* semi-bold */
        letter-spacing: 0.5px;
        /* subtle spacing for clarity */
        display: block;
        width: 100%;
        /* hover fills its li */
        padding: 0.75rem 1rem;
        /* even left/right spacing */
        border-radius: 0;
    }

    .navbar-nav .nav-link:hover {
        background-color: #ff7a1a;
        /* warm orange highlight */
        color: #fff !important;
        /* keep text white */
    }
}