/* Basic Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #333;
    padding: 10px 0;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 50px 20px;
}

#about-hero {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

#about-hero h1 {
    font-size: 2.5em;
}

#about-hero p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* About Us Section */
#about-us {
    background-color: white;
    padding: 50px 20px;
    margin-top: 30px;
}

#about-us h2 {
    color: #007bff;
    margin-bottom: 20px;
}

#about-us p {
    margin-bottom: 30px;
    font-size: 1.1em;
}

#about-us ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

#about-us ul li {
    margin-bottom: 20px;
    font-size: 1.1em;
}

#about-us ul li strong {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
