body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.news-header {
    text-align: center;
    margin-bottom: 30px;
}

.news-title {
    font-size: 32px;
    color: #003366;
    margin-bottom: 15px;
}

.news-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.news-content {
    font-size: 16px;
    color: #444;
}

.news-content p {
    margin-bottom: 20px;
}

.news-keywords {

    display: none;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #002244;
}
