/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: #00296b;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

header .logo {
    width: 150px;
    animation: slideIn 2s ease-out;
}

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

/* Navigation Styles */
nav {
    background-color: #003f88;
    color: white;
    padding: 10px 0;
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd500;
}

/* Dropdown Content */
.dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    background-color: #00509d;
    border-radius: 5px;
}

.dropdown-content a:hover {
    background-color: #fdc500;
}

/* Section Styles */
.section {
    padding: 50px 20px;
    text-align: center;
}

.section h2 {
    color: #00296b;
    margin-bottom: 20px;
}

/* Footer Styles */
.footer {
    background-color: #00509d;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer a {
    color: #ffd500;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
}