
    /* Enhanced CSS styles for the article page with SEO and readability improvements */
    :root {
        --main-color: #c50000;
        --main-color-light: #ff6666;
        --text-color: #333333;
        --text-light: #505050;
        --text-muted: #7f7f7f;
        --bg-color: #ffffff;
        --bg-light: #f9f9f9;
        --bg-accent: #f0f0f0;
        --border-color: #e0e0e0;
        --link-color: #0052cc;
        --font-primary: "SF Pro", "San Francisco", "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
        --font-heading: "SF Pro", "San Francisco", "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
        --container-width: 800px;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font-primary);
        line-height: 1.6;
        color: var(--text-color);
        margin: 0;
        padding: 0;
        background-color: var(--bg-color);
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Header & Navigation Styles */
    .header {
        text-align: center;
        padding: 2rem 1rem;
        background-color: var(--bg-color);
        border-bottom: 1px solid var(--border-color);
    }

    .header .logo {
        max-width: 100%;
        height: auto;
        width: auto;
        max-height: 80px;
    }

    .header a {
        display: inline-block;
        transition: opacity 0.2s ease;
    }

    .header a:hover {
        opacity: 0.9;
    }

    /* Breadcrumbs with improved accessibility and SEO */
    .breadcrumbs {
        width: 90%;
        max-width: var(--container-width);
        margin: 1rem auto;
        font-size: 0.9rem;
        color: var(--text-muted);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .breadcrumbs a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .breadcrumbs a:hover {
        color: var(--main-color);
        text-decoration: underline;
    }

    .breadcrumbs .separator {
        margin: 0 0.5rem;
        color: var(--text-muted);
    }

    /* Main content container */
    .article-container {
        width: 90%;
        max-width: var(--container-width);
        margin: 0 auto 3rem;
        padding: 0 20px;
        background-color: var(--bg-color);
    }

    /* Heading styles with improved readability and SEO emphasis */
    .headline {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--text-color);
        margin: 1.5rem 0 1rem;
        line-height: 1.2;
        font-weight: 700;
        position: relative;
        padding-bottom: 0.8rem;
        border-bottom: 2px solid var(--main-color);
    }
    
    /* Highlight important keywords in headings for both users and SEO */
    .headline mark, .headline strong, .headline em {
        background-color: transparent;
        color: var(--main-color);
        font-style: normal;
        font-weight: inherit;
    }

    .content h2 {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        color: var(--main-color);
        margin: 1.5rem 0 1rem;
        line-height: 1.3;
    }

    .content h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--text-color);
        margin: 1.5rem 0 1rem;
        line-height: 1.3;
    }

    /* Meta information styles */
    .meta {
        color: var(--text-muted);
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .meta time {
        font-weight: 500;
    }

    .reading-time {
        white-space: nowrap;
    }

    /* Summary section */
    .summary {
        background-color: var(--bg-light);
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
        border-left: 4px solid var(--main-color);
    }

    .summary h2 {
        font-size: 1.4rem;
        color: var(--main-color);
        margin-top: 0;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }

    .summary p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-color);
        margin: 0;
        text-align: justify;
    }

    /* Brief section */
    .brief {
        background-color: var(--bg-accent);
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
        border-left: 4px solid var(--main-color);
    }

    .brief h2 {
        color: var(--main-color);
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.4rem;
    }

    .brief p {
        margin: 0;
        line-height: 1.6;
    }

    .brief .language-indicator {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    /* Image container with improved accessibility */
    .article-image-container {
        margin: 2rem 0;
        text-align: center;
    }
    
    .article-image {
        max-width: 100%;
        height: auto;
        display: inline-block;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .image-source {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 0.8rem;
        text-align: right;
        font-style: italic;
    }

    /* Article content styles */
    .content {
        margin-top: 2rem;
    }

    .story-text__paragraph p, 
    .content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: justify;
        color: var(--text-color);
    }

    .story-text__paragraph a, 
    .content a {
        color: var(--link-color);
        text-decoration: underline;
        transition: color 0.2s ease;
    }

    .story-text__paragraph a:hover, 
    .content a:hover {
        color: var(--main-color);
    }

    .story-text__paragraph strong {
        color: var(--text-color);
        font-weight: 700;
    }

    .story-text__paragraph strong.final-text {
        color: var(--text-color);
        font-weight: 700;
    }

    /* Article tags section */
    .article-tags {
        margin: 2rem 0;
        padding: 1rem;
        background-color: var(--bg-light);
        border-radius: 8px;
    }

    .article-tags h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        color: var(--text-color);
    }

    .article-tags ul {
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .article-tags li {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        background-color: var(--bg-accent);
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--text-color);
        border: 1px solid var(--border-color);
    }

    /* Related articles section */
    .related-articles {
        margin: 2rem 0;
        padding: 1.5rem;
        background-color: var(--bg-light);
        border-radius: 8px;
        border-top: 3px solid var(--main-color);
    }

    .related-articles h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .related-articles ul {
        list-style-type: none;
    }

    .related-articles li {
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid var(--border-color);
    }

    .related-articles li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .related-articles a {
        color: var(--link-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .related-articles a:hover {
        color: var(--main-color);
        text-decoration: underline;
    }

    /* Footer styles */
    .footer {
        text-align: center;
        padding: 2rem;
        background-color: var(--bg-light);
        border-top: 1px solid var(--border-color);
        font-size: 0.9rem;
    }

    .footer-content {
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .footer p {
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s ease;
        padding: 0 0.5rem;
    }

    .footer a:hover {
        color: var(--main-color);
        text-decoration: underline;
    }

    /* Responsive adjustments */
    @media only screen and (max-width: 768px) {
        .header .logo {
            max-height: 60px;
        }
        
        .article-container {
            width: 95%;
            padding: 0 15px;
        }
        
        .headline {
            font-size: 2rem;
        }
        
        .summary h2, 
        .summary p, 
        .story-text__paragraph p, 
        .content p {
            text-align: left;
        }
        
        .summary h2, 
        .summary p {
            font-size: 1.1rem;
        }
        
        .content h2 {
            font-size: 1.6rem;
        }
        
        .article-tags ul {
            display: block;
        }
        
        .article-tags li {
            margin-bottom: 0.5rem;
        }
    }

    /* Print styles for better printing */
    @media print {
        .header, 
        .footer, 
        .breadcrumbs, 
        .related-articles {
            display: none;
        }
        
        body {
            font-size: 12pt;
            line-height: 1.5;
            color: #000;
            background: #fff;
        }
        
        .article-container {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .headline {
            font-size: 18pt;
            margin-bottom: 0.5cm;
        }
        
        .content h2 {
            font-size: 14pt;
        }
        
        a {
            color: #000;
            text-decoration: none;
        }
        
        a[href^="http"]:after {
            content: " (" attr(href) ")";
            font-size: 10pt;
        }
    }
