/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6; 
    color: #333;
    background-color: #cedae6; /* Light grey background for the page */
}


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

.about-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.about-container p {
    font-size: 1.2em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-content {
    margin-top: 20px;
}

.about-content h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

.about-footer p {
    font-size: 1.2em;
    text-align: center;
    margin-top: 30px;
    color: #666;
}

