.article {
    padding: 40px 20px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.article-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.article h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.article .date {
    font-size: 1.2em;
    color: #777;
    margin-bottom: 20px;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.article-body {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}

.article-body h2 {
    font-size: 2em;
    color: #007BFF;
    margin-top: 40px;
}

.article-body ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 40px;
}

.article-body ul li {
    font-size: 1.1em;
    color: #555;
}

.article-footer {
    text-align: center;
    margin-top: 40px;
}

.article-footer .back-to-news {
    font-size: 1.2em;
    color: #007BFF;
    text-decoration: none;
    border: 2px solid #007BFF;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.article-footer .back-to-news:hover {
    background-color: #007BFF;
    color: white;
}
