/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #003366;
    padding: 20px 0;
    color: white;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #003366;
}

.about-section h3 {
    color: #003366;
    margin-top: 20px;
}

.about-section p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.about-section ul {
    list-style-type: square;
    padding-left: 20px;
}

.about-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

footer {
    background-color: #003366;
    padding: 10px;
    color: white;
    text-align: center;
}

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}
