/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background: #161b25;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

header .logo-container {
    text-align: center;
    margin-bottom: 10px;
}

header .logo {
    max-width: 150px;
}

header h1 {
    font-size: 28px;
    font-weight: bold;
}

header p {
    font-size: 16px;
    margin-top: 5px;
}

/* Navigation */
nav ul {
    list-style: none;
    text-align: center;
    background: #161b25;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: background 0.3s ease-in-out;
}

nav ul li a:hover {
    background: #028dee;
    color: #002244;
    border-radius: 5px;
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #002244;
    font-size: 24px;
    margin-bottom: 10px;
}

.content-section h3 {
    color: #002244;
    font-size: 20px;
    margin-top: 20px;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 15px;
}

.content-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 16px;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* Links */
a {
    color: #002244;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #028dee;
}

/* Footer */
footer {
    text-align: center;
    background: #161b25;
    color: #fff;
    padding: 15px 10px;
    margin-top: 30px;
}

footer nav ul {
    list-style: none;
    margin-top: 10px;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    color: #028dee;
    font-size: 14px;
}

footer nav ul li a:hover {
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

    nav ul li {
        display: block;
        margin: 8px 0;
    }

    main {
        padding: 15px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 14px;
    }
}
