body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f4f8, #cce4f6);
}

header {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 10pt;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.header-logo {
    display: flex;
    align-items: center;
    animation: fadeIn 2s ease-in-out;
}

.logo {
     width: 80px;
    height: auto;
    margin-right: 10px;
    animation: fade-in 2s infinite;
}

.site-title {
    margin: 1;
    font-size: 20pt;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

main {
    padding: 20px;
}

.news-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.news-image {
    width: 40%;
    object-fit: cover;
}

.news-content {
    padding: 30px;
    font-size: 13pt;
    flex: 1;
}

.news-content h2 {
    margin: 0;
    font-size: 16pt;
    color: #333;
}

.news-date {
    color: #888;
    margin-bottom: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
}
