/* =============================================== */
/* --- About Us Page Styles --- */
/* =============================================== */

/* --- About Hero Section --- */
.about-hero {
    background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080') center center/cover no-repeat;
    padding: 100px 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--heading-font);
}

/* --- Section Title --- */
.section-title {
    color: var(--dark-color);
    font-weight: 800;
    font-size: 2.5rem;
}

/* --- Feature Card ("Why Choose Us") --- */
.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* --- Team Card --- */
.team-card .team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card h5 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-social a {
    color: var(--text-color);
    margin: 0 0.5rem;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}