/* -----------------------------
GLOBAL
----------------------------- */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #f7f9fb;
    color: #222;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0b63f6;
}

a:hover {
    text-decoration: underline;
}

/* -----------------------------
LAYOUT
----------------------------- */

.container {
    max-width: 860px;
    margin: auto;
    padding: 40px 20px;
}

/* -----------------------------
HEADER / NAV
----------------------------- */

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.logo {
    height: 42px;
}

nav {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
}

nav a:hover {
    color: #0b63f6;
}

/* -----------------------------
TYPOGRAPHY
----------------------------- */

h1 {
    font-size: 34px;
    margin-bottom: 12px;
    line-height: 1.3;
}

h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 16px;
}

.intro {
    font-size: 17px;
    color: #333;
}

.sub-intro {
    color: #555;
    font-size: 15px;
}

/* -----------------------------
HERO IMAGE
----------------------------- */

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin: 15px 0 25px 0;
}

/* -----------------------------
CARDS
----------------------------- */

.card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}

.card p {
    margin: 8px 0;
}

.card strong {
    font-weight: 700;
    color: #111;
}

/* -----------------------------
STATS
----------------------------- */

.stat-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.stat-row span:first-child {
    color: #555;
}

.stat-row strong {
    color: #111;
}

/* -----------------------------
HIGHLIGHT
----------------------------- */

.highlight {
    font-size: 28px;
    font-weight: 700;
    color: #0b63f6;
    margin-top: 8px;
}

/* -----------------------------
LISTS
----------------------------- */

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
    line-height: 1.5;
}

li a {
    text-decoration: none;
    color: #0b63f6;
}

li a:hover {
    text-decoration: underline;
}

/* -----------------------------
CTA
----------------------------- */

.cta {
    margin-top: 40px;
    padding: 28px;
    background: #0b63f6;
    color: white;
    border-radius: 12px;
    text-align: center;
}

.cta p {
    margin: 0;
}

.cta .cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: white;
    color: #0b63f6;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    font-size: 15px;
}

.cta .cta-button:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* -----------------------------
STORE BADGES
----------------------------- */

.store-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.store-badge {
    height: 54px;
    width: auto;
    display: block;
}

/* -----------------------------
FOOTER
----------------------------- */

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #777;
    text-align: center;
}

/* -----------------------------
SPACING
----------------------------- */

.card + h2 {
    margin-top: 50px;
}

/* -----------------------------
MOBILE
----------------------------- */

@media (max-width: 600px) {

    .container {
        padding: 20px 14px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    .hero-img {
        max-height: 200px;
    }

    .highlight {
        font-size: 22px;
    }

    .cta {
        padding: 22px;
    }

    .cta .cta-button {
        width: 100%;
        text-align: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        height: 50px;
    }
}
.savings-table {
    width: 100%;
    border-collapse: collapse;
}

.savings-table th,
.savings-table td {
    padding: 14px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.savings-table th {
    font-size: 14px;
    color: #666;
}

.savings-table td strong {
    color: #0b63f6;
}

@media (max-width: 700px) {

    .savings-table {
        font-size: 14px;
    }

    .savings-table th,
    .savings-table td {
        padding: 10px 6px;
    }
}
