:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e293b;
    --text-main: #334155;
    --text-heading: #000;
    --accent-red: #dc2626;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
}

/* Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 30px;
}

.header-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Article Container */
.article-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.wide-container {
    max-width: 1000px;
}

.article-title {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-align: center;
}

.article-sub-headline {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

/* Featured Image */
.featured-image-section {
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

.small-hero {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Article Content */
.article-body {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-align: center;
}

.article-body p {
    margin-bottom: 25px;
}

/* Eligibility Box */
.eligibility-check {
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #cbd5e1;
}

.eligibility-check h3 {
    margin-top: 0;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.criteria-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.criteria-item i {
    color: var(--primary-blue);
    width: 24px;
    height: 24px;
}

.news-alert-box {
    background-color: #fff;
    padding: 12px;
    border-left: 4px solid var(--accent-red);
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.alert-icon {
    color: var(--accent-red);
    flex-shrink: 0;
}

/* Requirements Box */
.requirements-box {
    background-color: #fffbeb;
    border: 1px solid #fde047;
    border-radius: 12px;
    padding: 20px;
    margin: 0 auto 30px;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.requirements-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.requirement-item:last-child {
    margin-bottom: 0;
}

.requirement-item i {
    color: #10b981;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


/* Buttons */
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: scale(1.02);
}

.btn-margin {
    margin-bottom: 30px;
}

/* Step 2: Quiz */
.quiz-container {
    background-color: #1e3a8a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: white;
}

.quiz-card {
    max-width: 600px;
    text-align: center;
}

.quiz-headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-yellow {
    color: #fde047;
}

.quiz-subheadline {
    color: #fde047;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 75%;
    height: 100%;
    background-color: #38bdf8;
}

.quiz-button {
    background-color: #ef4444;
    color: white;
    border: 3px solid white;
    padding: 18px 0;
    width: 100%;
    max-width: 400px;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.quiz-button:hover {
    transform: scale(1.03);
}

.quiz-link {
    display: block;
    color: white;
    text-decoration: underline;
    opacity: 0.8;
}

/* Footer */
.news-footer {
    background-color: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
}

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

.footer-copyright {
    color: #94a3b8;
    font-size: 0.75rem;
}

.footer-disclaimer {
    color: #cbd5e1;
    font-size: 0.6rem;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.5;
    padding: 0 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1rem;
    }
}

/* Blog Specific Styles */
.blog-page {
    background-color: var(--bg-light);
}

.blog-container {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
    max-width: 850px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.blog-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.blog-intro {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.5;
    font-style: italic;
}

.blog-featured-image {
    margin: 0 -40px 40px -40px;
}

.blog-featured-image img {
    width: 100%;
    border-radius: 0;
    height: 450px;
    object-fit: cover;
}

.blog-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1f2937;
}

.blog-content h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    margin: 45px 0 20px;
    color: var(--text-heading);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--primary-dark);
}

.blog-content h4 {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    color: var(--primary-blue);
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 25px;
}

.blog-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 12px;
}

.blog-callout {
    background-color: #eff6ff;
    border-left: 5px solid var(--primary-blue);
    padding: 25px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.blog-cta-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.blog-cta-section h3 {
    margin-top: 0;
}

/* Listicle Styles */
.listicle-page {
    background-color: #f8fafc;
}

.listicle-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px 80px;
}

.listicle-intro {
    text-align: center;
    margin-bottom: 50px;
}

.listicle-intro h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 20px;
    line-height: 1.2;
}

.listicle-intro p {
    font-size: 1.2rem;
    color: #4b5563;
}

.listicle-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
}

.listicle-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.listicle-content {
    padding: 40px;
    position: relative;
}

.listicle-number {
    position: absolute;
    top: -25px;
    left: 40px;
    background: var(--primary-blue);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.listicle-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 15px;
    margin-top: 10px;
}

.listicle-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 25px;
}

.listicle-cta {
    display: block;
    width: 100%;
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.listicle-cta:hover {
    background-color: #1d4ed8;
}

/* Hero Split Desktop */
@media (min-width: 769px) {
    .hero-split {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-bottom: 40px;
        text-align: left;
    }

    .hero-content {
        flex: 1.2;
    }

    .hero-image-side {
        flex: 1;
    }

    .hero-content .article-title,
    .hero-content .article-sub-headline {
        text-align: left;
    }

    .hero-content .requirements-box {
        margin-left: 0;
    }

    .hero-content .btn-primary {
        margin-left: 0;
    }

    .hero-content .cta-wrapper {
        display: flex;
        justify-content: flex-start;
    }

    .hero-image-side .featured-image-section {
        margin: 0;
    }
}