/* about page styles - Extracted from inline style */

.about-intro {
    margin-bottom: 80px;
}
.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}
.about-image img {
    box-shadow: var(--shadow-xl);
}
.about-values {
    margin-bottom: 80px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.value-icon i {
    font-size: 2rem;
    color: var(--white);
}
.value-card h4 {
    margin-bottom: 15px;
}
.value-card p {
    color: var(--text-light);
    margin: 0;
}
.about-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 50px 30px;
}
.stat-card {
    text-align: center;
    color: var(--white);
}
.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}