.article-title {
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 6px;
    font-weight: 700;
}

/* Subtitle under title */
.article-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Main article box */
.main-box.article-box {
    width: auto !important;
    max-width: 780px !important;
    margin: 0 auto;
    background: #fafafa;
    padding: 34px 30px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    margin-bottom: 40px;
}

/* Article section headings */
.article-box h2 {
    font-size: 19px;
    font-weight: 700;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #111;
}

.article-box h2:first-child {
    margin-top: 0;
}

/* Article paragraph styling */
.article-box p {
    font-size: 15px;
    line-height: 1.75;
    margin: 8px 0 14px;
    color: #333;
}

/* Last Updated text */
.last-updated {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Article list styling */
.article-box ul,
.article-box ol {
    margin: 10px 0 16px 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    list-style: none;
}

.article-box ul li,
.article-box ol li {
    margin-bottom: 6px;
}

/* Contact info box */
.contact-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
    list-style: none;
    padding-left: 24px;
}

.contact-info-card li {
    list-style: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.contact-info-card li:last-child {
    border-bottom: none;
}

.contact-info-card a {
    color: #000;
    font-weight: 600;
}

/* Highlight box for key info */
.article-highlight {
    background: #f7f7f7;
    border-left: 4px solid #000;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.article-highlight strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #111;
}

/* Link in articles */
.article-box a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-box a:hover {
    color: #444;
}

/* MOBILE */
@media (max-width: 768px) {
    .article-title {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 6px;
    }

    .article-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .main-box.article-box {
        padding: 22px 16px;
        margin: 0 10px 30px 10px;
    }

    .article-box h2 {
        font-size: 17px;
    }

    .article-box p {
        font-size: 14px;
    }

    .contact-info-card {
        padding: 16px 18px;
    }
}