/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #2d89ef;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Navigation menu */
nav {
    background-color: #1e4e8c;
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
}

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

nav li {
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

/* Hero section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    margin: 0;
    font-size: 2em;
}

.hero p {
    font-size: 1.2em;
}

/* Content section */
.content {
    padding: 20px;
    text-align: center;
}

.content h2 {
    color: #2d89ef;
}

ul {
    text-align: left;
    margin: 20px auto;
    display: inline-block;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 5px 0;
    }

    .content ul {
        width: 90%;
    }
}