/* about.css - styles for about.html */
.about-section {
    padding: 6rem 0;
    background-color: #ffffff;
}
.about-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}
.about-card:hover {
    transform: translateY(-5px);
}
.commitment-item {
    text-align: center;
    padding: 20px;
}
.commitment-item h5 {
    color: #1a237e;
    margin-bottom: 15px;
}
.stats-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #1a237e, #3949ab);
    color: white;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stats-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
