:root {
    --primary-red: #C8102E;
    /* Official TJ Maxx Red is often cited as PMS 186 C or similar, #C8102E is a good standard red, previous was #E21F26 which is also fine. Let's stick to a strong red. */
    --primary-blue: #C8102E;
    /* Replaced Blue with Red for branding */
    /* Brighter blue from image */
    --verified-blue: #C8102E;
    /* Replaced Verified Blue with Red */
    --text-dark: #2E2F32;
    --text-light: #636466;
    --bg-light: #FFFFFF;
    --step-bg: #F4F4F4;
    /* Gray background for steps */
    --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --border-color: #D3D3D3;
    --blue-border: #C8102E;
    /* Replaced Blue Border with Red */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Verified Badge */
.verified-badge-container {
    background-color: var(--white);
    padding: 8px 0;
    display: flex;
    justify-content: center;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #000;
    font-size: 0.85rem;
}

.shield-icon {
    width: 16px;
    height: 16px;
    fill: var(--verified-blue);
}

/* Notification Bar */
.notification-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Main Container */
.container {
    max-width: 500px;
    /* Narrower container as per image */
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.tjmaxx-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary-red);
    letter-spacing: -1px;
}

/* Hero */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 1rem;
    font-weight: 800;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* CTA Button */
.cta-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.claim-btn {
    background: linear-gradient(90deg, #C8102E 0%, #E21F26 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
}

.gift-icon {
    font-size: 1.4rem;
}

.arrow {
    margin-left: 5px;
}

/* Content Boxes */
.content-box {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
    background: var(--white);
}

.content-box.bordered-blue {
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    padding: 0;
    /* Padding handled by children */
    overflow: hidden;
}

/* Steps */
.steps-wrapper {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.box-header {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #333;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-box {
    background-color: #E8E8E8;
    /* Gray background */
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-check {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.step-check svg {
    width: 100%;
    height: 100%;
    color: #555;
    /* Dark checkmark */
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}

.step-content p {
    font-size: 0.8rem;
    color: #666;
}

/* Social Proof */
.social-proof-box {
    text-align: center;
}

.box-header-center {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.proof-content {
    background-color: #FFF0F0;
    /* Light red bg */
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof-text {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
}

/* FAQ */
.faq-section {
    /* Bordered blue handled by common class */
}

.box-header-blue {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px;
}

.faq-item {
    padding: 0 16px 16px 16px;
}

.faq-question {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #000;
}

.faq-answer {
    background-color: #F9F9F9;
    padding: 12px;
    border-radius: 6px;
}

.faq-answer p {
    font-size: 0.8rem;
    color: #444;
    line-height: 1.4;
}

.eligibility-text {
    text-align: center;
    padding: 16px;
    border-top: 1px solid #eee;
}

.eligibility-text p {
    font-size: 0.7rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.eligibility-text .terms {
    color: #999;
    font-weight: 400;
    font-size: 0.65rem;
}

/* Footer Bar */
.footer-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 16px;
    margin-top: 20px;
}

.footer-bar p {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }

    .tjmaxx-logo {
        font-size: 2rem;
    }
}