:root {
    --teal: #1a3c34;
    --orange: #ff4500;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background: #fff;
}

/* ========== HEADER ========== */
.site-header {
    background-color: var(--teal);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.site-header .brand {
    color: var(--orange);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* ========== MAIN ========== */
main {
    flex: 1;
    padding: 48px 0 60px;
}

.main-title {
    text-align: center;
    color: var(--orange);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 48px;
}

/* ========== CARDS ========== */
.cards-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.offer-card {
    border: 2px solid var(--teal);
    border-radius: 12px;
    padding: 24px 20px;
    height: 100%;
    background: #fff;
}

.offer-card .card-heading {
    color: var(--orange);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 4px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

.offer-card ul {
    padding-left: 20px;
    margin: 0;
}

.offer-card ul li {
    margin-bottom: 8px;
    line-height: 1.45;
}

.offer-card ul li:last-child {
    margin-bottom: 0;
}

/* ========== STARBURST BADGE ========== */
.starburst {
    position: relative;
    width: 85px;
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--teal);
}

.starburst::before,
.starburst::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
}

.starburst::before {
    transform: rotate(30deg);
}

.starburst::after {
    transform: rotate(60deg);
}

.starburst span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1.25;
}

/* Desktop badges */
.badge-desktop {
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.badge-desktop.q1 {
    left: 56%;
    transform: translateX(-50%);
}

.badge-desktop.q3 {
    left: 81%;
    transform: translateX(-50%);
}

/* Mobile badges */
.badge-mobile {
    text-align: right;
    padding-top: 16px;
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--teal);
    padding: 14px 24px;
    text-align: center;
}

.site-footer a {
    color: var(--orange);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-legal {
    margin: 8px 0 0;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-legal a {
    color: #ccc;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ========== LEGAL PAGE ========== */
.legal-page section {
    margin-bottom: 32px;
}

.legal-page h3 {
    color: var(--teal);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 20px;
}

.legal-page ul li {
    margin-bottom: 6px;
}

/* ========== MOBILE ========== */
@media (max-width: 767.98px) {
    .site-header .brand {
        font-size: 1.4rem;
    }

    main {
        padding: 24px 0 32px;
    }

    .main-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .cards-wrapper {
        padding-bottom: 0;
    }

    .cards-row > .card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}