/* about.css */
.about-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.about-section h2, 
.about-section h3 {
    color: #003366;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}
header nav ul li a.active {
    color: #f39c12;
}

.founders {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.founder-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.founder-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.founder-card h4 {
    color: #003366;
    font-size: 20px;
    margin-bottom: 5px;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}
.contact-info {
    color: rgb(255, 255, 255);
}