
/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
}

a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #005fa3;
}

/* Container */
#page-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Header */
header {
    background-color: #004080;
    color: white;
    padding: 40px 20px;
    text-align: center;
    animation: slideDown 0.6s ease-out;
}

header img {
    max-height: 60px;
    margin-bottom: 15px;
}

/* Navigation */
nav {
    background-color: #eaeaea;
    padding: 10px 0;
    text-align: center;
}

nav a {
    margin: 0 15px;
    font-weight: bold;
}

/* Sections */
section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    animation: fadeInUp 0.5s ease-in-out;
}

/* Footer */
footer {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Images and media */
img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    header, section {
        padding: 15px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
