/* public/css/about-page.css */

.about-page-section h1 {
    font-size: 2.5rem;
}

.about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.about-card p {
    line-height: 1.7;
    font-size: 0.98rem;
}
