* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f0f2f5;
    color: #1e2a3a;
}

.site-header {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.site-header h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

.main-nav a:hover {
    background: #e67e22;
    color: white;
    border-radius: 5px;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-item {
    background: white;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-item h2 {
    font-size: 22px;
    color: #194570;
    margin-bottom: 8px;
}

.news-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 12px;
    font-style: italic;
}

.news-item p {
    line-height: 1.5;
    margin-bottom: 12px;
}

.read-more {
    display: inline-block;
    background: #194570;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.read-more:hover {
    background: #e67e22;
}

.site-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 14px;
}