/* General Styles for About Page */
.about, .mission {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    color: #333;
}

.about h1, .mission h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #007bff;
}

.about p, .mission p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.about ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.about ul li {
    font-size: 18px;
    padding: 10px;
    background: #007bff;
    color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.about ul li:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Our Mission Section */
.mission {
    background-color: #007bff;
    color: white;
}

.mission h2 {
    color: #fff;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
