/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #002147, #00509e);
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
}

.logo {
    width: 120px;
    height: 120px;
}

.header-text h1 {
    margin: 0;
    font-size: 2em;
}

.header-text p {
    margin: 5px 0;
    font-size: 1.2em;
}

/* Navigation */
nav {
    background-color: #003366;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #ffd700;
    color: #003366;
    border-radius: 5px;
}

/* Content */
.content {
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.content h2 {
    color: #002147;
}

.content ul {
    text-align: left;
    display: inline-block;
}

/* Footer */
footer {
    background-color: #002147;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        padding: 10px;
        width: 100%;
        text-align: center;
    }
    .content {
        padding: 30px;
    }
}
