.article-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d7a3d 100%);
    color: white;
    padding: 120px 0 60px;
}

.breadcrumb {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.article-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.article-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.article-image {
    text-align: center;
    margin-bottom: 30px;
}

.article-image svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

.intro {
    font-size: 1.2rem;
    color: #2d7a3d;
    font-weight: 500;
    margin-bottom: 40px;
    padding: 20px;
    background: #f0f8ff;
    border-left: 4px solid #2d7a3d;
    border-radius: 5px;
}

.article-text h2 {
    color: #1a472a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-text h3 {
    color: #2d7a3d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.article-text h4 {
    color: #1a472a;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.article-text p {
    margin-bottom: 20px;
    color: #333;
}

.article-text ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 10px;
    color: #333;
}

blockquote {
    background: #e8f5e8;
    border-left: 4px solid #2d7a3d;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
    font-style: italic;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #2d7a3d;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #1a472a;
    font-style: normal;
}

.article-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    text-align: center;
}

.article-cta h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.article-cta p {
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.related-articles {
    padding: 60px 0;
    background: white;
}

.related-articles h3 {
    text-align: center;
    color: #1a472a;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.related-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-card h4 a {
    color: #1a472a;
    text-decoration: none;
}

.related-card h4 a:hover {
    color: #2d7a3d;
    text-decoration: underline;
}

.related-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-text {
        padding: 30px 20px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }

    .article-text h2 {
        font-size: 1.5rem;
        margin-top: 35px;
    }

    .article-text h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .intro {
        font-size: 1.1rem;
        padding: 15px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
}