/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #004b8d;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #ff9933;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #004b8d;
    color: #ff9933;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

h2 {
    color: #004b8d;
    font-size: 1.8em;
    border-bottom: 2px solid #ff9933;
    padding-bottom: 10px;
}

h3 {
    color: #ff9933;
    font-size: 1.4em;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    section {
        margin: 10px;
    }

    header h1 {
        font-size: 1.5em;
    }
}

footer {
    background-color: #ff9933;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    width: 100%;
}
