/* Global styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: underline;
}

/* Header styles */
header {
    background-color: ##0D3EAF;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #333;
    color: #fff;
}

/* News container styles */
.news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.news-title {
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.news-item {
    margin-bottom: 40px;
}

.news-item-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.news-item-details {
    margin-bottom: 20px;
    font-size: 14px;
}

.news-item-date {
    margin-right: 10px;
}

.news-item-content {
    font-size: 16px;
    line-height: 1.6;
}

.news-no-results {
    font-style: italic;
    text-align: center;
}

