.article-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, #0f3460 100%);
    padding: 120px 20px 60px;
    text-align: center;
    margin-top: 70px;
}
body.light-mode .article-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3e7f1 50%, #d4dff7 100%);
}
.article-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.article-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--bg-primary);
}
.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-primary);
}
.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-secondary);
}
.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
    list-style: none;
}
.article-content li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-secondary);
    position: relative;
}
.article-content li:last-child {
    margin-bottom: 0;
}
.article-content li:before {
    content: "•";
    color: var(--accent-start);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -20px;
    top: 2px;
}
.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.highlight-box {
    background: var(--card-bg);
    border-left: 4px solid var(--accent-start);
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
}
body.light-mode .highlight-box {
    background: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}
.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.comparison-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    overflow-x: auto;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--card-border);
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--card-border);
    vertical-align: top;
}
.comparison-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.symptom-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    overflow-x: auto;
}
.symptom-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}
.symptom-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--card-border);
}
.symptom-table td {
    padding: 15px;
    border-bottom: 1px solid var(--card-border);
    vertical-align: top;
}
.symptom-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.exercise-box {
    background-color: #f8f9fa;
    border-left: 5px solid #6c757d;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 20px 0;
    border: 1px solid #e1e4e8;
}
body.dark-mode .exercise-box {
    background: var(--card-bg);
    color: var(--text-secondary);
    border-left-color: var(--accent-start);
    border-color: var(--card-border);
}
.exercise-box h3 {
    color: #6c757d;
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}
body.dark-mode .exercise-box h3 {
    color: var(--text-primary);
}
.exercise-box h3 span {
    margin-right: 10px;
}
.exercise-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}
.exercise-box li {
    margin-bottom: 10px;
    color: #555;
}
body.dark-mode .exercise-box li {
    color: var(--text-secondary);
}
.exercise-box li:last-child {
    margin-bottom: 0;
}
.action-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid var(--accent-start);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}
.action-item h4 {
    color: var(--accent-start);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}
.action-item p {
    margin: 0;
    color: var(--text-secondary);
}
.checklist-box {
    background: #f0f7ff;
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}
.checklist-box h3 {
    color: #0066cc;
    text-align: center;
    margin-bottom: 20px;
}
.checklist-box ul {
    list-style: none;
    padding: 0;
}
.checklist-box li {
    padding: 10px 0;
    border-bottom: 1px solid #d0e0f0;
    color: var(--text-primary);
}
.checklist-box li:last-child {
    border-bottom: none;
}
.checklist-box li:before {
    content: "☐";
    margin-right: 10px;
    color: #0066cc;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.pillar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.pillar-card h3 {
    color: var(--accent-start);
    margin-bottom: 10px;
}
.pillar-card p {
    font-size: 1rem;
    margin-bottom: 0;
}
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.steps-list li strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.2rem;
    }
    .article-content h2 {
        font-size: 1.8rem;
    }
    .article-content h3 {
        font-size: 1.4rem;
    }
    .article-content p {
        font-size: 1.05rem;
    }
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .pillar-grid {
        grid-template-columns: 1fr;
    }
}
