.team-card {
        border: none;
        border-radius: 16px;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .team-avatar-wrapper {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .team-avatar {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-avatar-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(40, 167, 69, 0) 0%, rgba(40, 167, 69, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .team-avatar {
        transform: scale(1.1);
    }

    .team-card:hover .team-avatar-overlay {
        opacity: 1;
    }

    .badge {
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 500;
        font-size: 0.875rem;
            }

    .btn-light {
        background: #f8f9fa;
        border: none;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .btn-light:hover {
        background: #e9ecef;
        transform: scale(1.1);
    }

    .contact-info {
        color: #6c757d;
        text-decoration: none;
        text-align: center;
        flex: 1;
        padding: 8px;
        font-size: 0.8rem;
        max-width: 50%;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        transition: border-color 0.2s ease;
    }

    .contact-info:hover {
        color: #198754;
        border-color: #198754;
        text-decoration: none;
    }

    .contact-info-wrapper {
        padding: 8px;
        margin-top: 1rem;
    }

    .contact-badge {
        padding: 8px;
        margin-bottom: 8px;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        font-size: 0.8rem;
        text-align: center;
    }

    .contact-value {
        font-size: 0.75rem;
        font-weight: 500;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .vr {
        height: 40px;
        opacity: 0.15;
    }

    @media (max-width: 576px) {
        .contact-info {
            padding: 4px;
            font-size: 0.75rem;
        }
        
        .contact-value {
            font-size: 0.7rem;
        }
        
        .vr {
            height: 30px;
        }
    }

    @media (max-width: 991.98px) {
        .contact-info-wrapper {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .contact-badge {
            flex: 1;
            margin-bottom: 0;
        }
    }

    .icon-circle {
        margin: 0 auto;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-circle i {
        font-size: 2.5rem;
    }

    .fa-bullseye {
        color: #198754;
    }

    .fa-eye {
        color: #0d6efd;
    }

    .fa-heart {
        color: #dc3545;
    }

    .fa-tasks {
        color: #ffc107;
    }

    .mission-card:hover .icon-circle i {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

    .cta-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #198754 0%, #115c39 100%);
        margin-top: 3rem;
    }

    .cta-content {
        padding: 2rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .cta-title {
        color: white;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .cta-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        background: white;
        color: #198754;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 768px) {
        .cta-section {
            padding: 2rem 0;
        }
        
        .cta-content {
            padding: 1.5rem;
            text-align: center;
        }
        
        .cta-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .cta-text {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }