﻿.about-us-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #0056b3 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--bs-primary);
    border-radius: 2px;
}

.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: white;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-card {
    position: relative;
    transition: transform 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-5px);
    }

.team-card {
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-5px);
    }

.social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

    .social-links a:hover {
        color: var(--bs-primary) !important;
    }

.stat-item {
    padding: 2rem 1rem;
}

.icon-wrapper {
    width: fit-content;
}

@@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}
