/* Reset some default styles */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* About Us Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Footer Styles (if needed) */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    margin-top: 20px; /* Adjust the margin to separate the footer from the content */
}

