/* Base Typography */
:root {
    --font-size-xs: 0.75em; /* 12px */
    --font-size-sm: 0.875em; /* 14px */
    --font-size-base: 1em; /* 16px */
    --font-size-md: 1.125em; /* 18px */
    --font-size-lg: 1.25em; /* 20px */
    --font-size-xl: 1.5em; /* 24px */
    --font-size-2xl: 2em; /* 32px */
    --font-size-3xl: 2.5em; /* 40px */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: white;
    color: #333;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

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

.intro-section {
    background: white;
    color: #333;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.main-headline {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: #000000;
    line-height: 1.2;
    margin: 15px auto 15px;
    padding: 0;
    max-width: 800px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.headline-update {
    color: #666;
    font-size: 0.5em;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.sub-headline {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: center;
    letter-spacing: 0.5px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.update-date {
    color: #666;
    font-size: 0.9em;
}

.feature-image {
    width: 100%;
    height: auto;
    margin: 20px 0 22px;
    border-radius: 12px;
    background: none;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.content-section {
    background: white;
    margin-bottom: 20px;
    padding: 15px 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #eee;
}

.content-section.no-border {
    border-bottom: none;
}

.section-headline {
    font-size: var(--font-size-2xl);
    margin: 20px 0 25px;
    font-weight: 800;
    line-height: 1.2;
    color: #003366;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    background: #f8f9fa;
    border-left: 5px solid #cc0000;
    position: relative;
}

.section-headline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #cc0000, #ff4444);
}

.section-number {
    color: #003366;
    font-weight: 900;
    margin-right: 8px;
}

.content-section p {
    color: #444;
    margin-bottom: 20px;
    font-size: var(--font-size-base);
    line-height: 1.6;
    max-width: 95%;
}

.content-section:first-of-type {
    padding-top: 10px;
}

.benefits-list,
.eligibility-list {
    background: white;
    padding: 0;
    margin: 20px 0;
    border: none;
}

.benefits-list h3,
.eligibility-list h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: var(--font-size-base);
}

.benefits-list ul,
.eligibility-list ul {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.eligibility-list li {
    margin: 10px 0;
    color: #444;
    font-size: var(--font-size-base);
    padding-left: 25px;
    position: relative;
}

.benefits-list li:before,
.eligibility-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2196F3;
    font-weight: bold;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #003366;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px auto;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
    font-size: var(--font-size-base);
    min-width: 200px;
}

.cta-button:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 51, 102, 0.2);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(0, 51, 102, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 51, 102, 0.2);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    animation: none;
}

.rating {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.stars {
    color: #FFC107;
}

.footer {
    background: #f8f9fa;
    color: #666;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.footer-links a {
    color: #666;
}

.social-follow h3 {
    color: #333;
}

.social-icon {
    background: #f5f5f5;
    border-radius: 4px;
}

.social-icon i {
    color: #666;
}

.disclaimer {
    color: #666;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .main-headline {
        font-size: var(--font-size-2xl);
    }

    .section-headline {
        font-size: var(--font-size-xl);
        padding: 12px 15px;
    }

    .intro-text p {
        font-size: var(--font-size-base);
    }

    .sub-headline {
        font-size: var(--font-size-sm);
        max-width: 95%;
    }
}

.share-buttons {
    background: none;
    padding: 10px;
    margin: 15px 0;
    text-align: center;
}

.share-text {
    color: #666;
    font-size: var(--font-size-sm);
    margin-bottom: 8px;
    font-weight: normal;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 6px;
    min-width: 50px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: opacity 0.2s;
}

.share-icon:hover {
    opacity: 0.8;
    transform: none;
}

.share-icon i {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.share-icon span {
    font-size: var(--font-size-xs);
    color: #888;
    text-align: center;
}

.sticky-alert {
    position: sticky;
    top: 0;
    background: #003366;
    color: white;
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 2px solid #cc0000;
}

.alert-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.alert-badge {
    background: #cc0000;
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: fit-content;
    margin: 0 auto 15px;
    text-align: center;
}

.alert-message {
    font-weight: 600;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .alert-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.site-header {
    background: #003366;
    border-bottom: 3px solid #cc0000;
    padding: 15px 0;
    margin-bottom: 0;
}

.logo-container {
    text-align: center;
}

.logo {
    font-family: "Impact", "Arial Black", sans-serif;
    font-size: var(--font-size-3xl);
    color: white;
    text-shadow:
        2px 2px 0 #cc0000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin: 0;
}

.logo-tagline {
    color: #ffd700;
    font-size: var(--font-size-sm);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.author-section {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 10px 0;
}

.author-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #003366;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1px;
}

.author-title {
    color: #666;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 1px;
}

.author-date {
    color: #666;
    font-size: 12px;
}

.important-note {
    background: #f8f9fa;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.important-note p {
    color: #555;
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

.important-note strong {
    color: #003366;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.intro-text {
    margin: 25px 0;
}

.intro-text p {
    color: #333;
    font-size: var(--font-size-md);
    line-height: 1.7;
    margin-bottom: 20px;
}

.intro-text p:last-child {
    font-weight: 500;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    position: relative;
}

.loading-text {
    color: #003366;
    font-size: 1em;
    margin: 15px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #003366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.success-message {
    display: none;
    color: #28a745;
    font-size: 1.1em;
    margin: 15px 0 20px;
}

.final-cta {
    display: none;
    background: #003366;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s;
}

.final-cta:hover {
    background: #004080;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add loading dots animation */
.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}

.social-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.social-count {
    color: #666;
    font-size: 15px;
}

.separator {
    color: #666;
    margin: 0 4px;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-link:hover {
    color: #444;
    text-decoration: none;
}

.social-link i {
    font-size: 16px;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    margin: 0 0 5px;
    align-items: center;
    text-align: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    justify-content: center;
}

.author-info > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .social-buttons {
        justify-content: center;
    }
}

.breadcrumb {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #003366;
}

.breadcrumb .separator {
    color: #ccc;
    margin: 0 8px;
}

.breadcrumb .current {
    color: #003366;
    font-weight: 500;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #003366;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #004080;
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}

/* Add these rules to the existing CSS */
html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .container {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* Social Share Buttons */
.social-share {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Divider styles */
.divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
    width: 100%;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.share-btn i {
    font-size: 14px;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #000000;
}

.share-btn.flipboard {
    background-color: #e12828;
}

.share-btn.comments {
    background-color: #0066cc;
}

.share-btn.print {
    background-color: #666666;
}

.share-btn.email {
    background-color: #333333;
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.telegram {
    background-color: #0088cc;
}

@media (max-width: 768px) {
    .social-share {
        gap: 8px;
    }

    .share-btn {
        width: 28px;
        height: 28px;
    }

    .share-btn i {
        font-size: 12px;
    }
}

.eligibility-check {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 20px 0;
    position: relative;
}

.progress {
    height: 100%;
    background: #28a745;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 14px;
    color: #666;
}

.question-container {
    text-align: center;
    margin: 25px 0;
}

.question-container h4 {
    font-size: var(--font-size-lg);
    color: #003366;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.answer-btn {
    background: #003366;
    color: white;
    border: none;
    padding: 12px 45px;
    border-radius: 4px;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-btn:hover {
    background: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

#success-message, #failure-message {
    text-align: center;
    padding: 25px;
}

#success-message h3 {
    color: #28a745;
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
}

#failure-message p {
    color: #666;
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin: 15px 0;
}

#loading-screen {
    text-align: center;
    padding: 30px 0;
}

.loading-spinner {
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #003366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #003366;
    font-size: var(--font-size-lg);
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Email Signup Styles */
.email-signup-container {
    margin: 40px auto;
    padding: 30px;
    max-width: 600px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.email-signup-container.compact {
    margin: 30px auto;
    padding: 25px;
    max-width: 500px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.email-signup-heading {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.email-signup-heading.compact {
    margin-bottom: 15px;
    font-size: 20px;
}

.email-signup-text {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.email-signup-text.compact {
    margin-bottom: 20px;
    font-size: 15px;
}

.email-signup-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: #666;
    font-size: 16px;
}

.email-signup-list li {
    margin: 8px 0;
}

.email-signup-privacy {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Section Break Styles */
.section-break {
    text-align: center;
    margin: 60px 0 40px;
    padding: 20px 0 30px;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}

.section-break h3 {
    color: #666;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-align: center;
}

/* Section Divider Styles */
.section-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-title {
    display: inline-block;
    background: #fff;
    padding: 0 20px;
    color: #666;
    font-size: 24px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.section-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dashed #ddd;
    z-index: 0;
} 