:root {
    --primary-color: #003366; /* Official Navy Blue */
    --secondary-color: #f0f0f0; /* Light Gray Background */
    --accent-color: #d32f2f; /* Alert Red */
    --text-color: #212121; /* Dark Grey text */
    --border-color: #e0e0e0;
    --white: #ffffff;
    --spacing-unit: 1rem;
    --progress-color: #d32f2f; /* Red for urgency */
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    width: 100%;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    border-bottom: 5px solid #ccaa00;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.headline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    padding: 0 0.5rem;
}

.subheadline {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.status-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Incentive Box */
.incentive-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 2rem;
    border-radius: 4px;
    margin: 0 auto 2rem auto;
    display: block;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.incentive-box h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Merriweather', Georgia, serif;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #005ea2;
    color: var(--white) !important;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.cta-button:hover {
    background-color: #004d85;
    text-decoration: none;
}

/* Social Proof */
.recent-activity {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.activity-icon {
    color: #2e7d32; /* Green dot */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    padding: 0 1rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #777;
    margin-top: auto;
    background-color: var(--secondary-color);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: #777;
    text-decoration: none;
}

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

/* Tablet and Desktop Styles (min-width) */
@media (min-width: 768px) {
    .headline {
        font-size: 2.75rem;
    }
    
    .subheadline {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .header {
        padding: 1.5rem 0;
    }

    .incentive-box {
        padding: 2.5rem;
    }

    .cta-button {
        width: auto;
        font-size: 1.25rem;
        padding: 1.25rem 3rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 380px) {
    .headline {
        font-size: 1.75rem;
    }
    
    .incentive-box {
        padding: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem;
        font-size: 1rem;
    }
}