body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f6f7fb;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #0078D7;
    color: white;
}

.navbar .logo a {
    color: white;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, #0078D7, #00BFFF);
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

main {
    padding: 30px 40px;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0078D7;
    color: white;
    text-align: center;
    padding: 15px;
}

.image-container {
    text-align: center;
    margin-top: 30px;
}

.featured-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
