/* About Page Styling */
.about-hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, #FFFFFF 100%);
    padding: 60px 0;
    border-bottom: 2px solid var(--hover-color);
}

.about-card {
    border: none;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-pink);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-pink);
    text-align: center;
}
.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
