.article {
    background: #f8f9fa;
    color: #333;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    width: 90%;
    max-width: 800px; /* Adjust width for better readability */
}

.article h2 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 24px;
    text-align: center;
}

.article p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    text-align: justify;
}

.article ul {
    list-style-type: disc;
    margin-left: 20px;
}

.article li {
    margin-bottom: 10px;
    font-size: 16px;
}

.article table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.article th, .article td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.article th {
    background: #ffcc00;
    color: #121212;
    font-weight: bold;
}

.article td {
    background: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .article {
        padding: 15px;
        width: 95%;
    }
    .article h2 {
        font-size: 20px;
    }
    .article p, .article li {
        font-size: 14px;
    }
    .article table th, .article table td {
        font-size: 14px;
        padding: 10px;
    }
}
