.team-area {
    padding: 80px 0;
}

.team-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.img-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-item:hover .img-wrapper img {
    transform: scale(1.1);
}

.team-content {
    text-align: center;
    padding-top: 20px;
    width: 100%;
}

.team-content h4 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .img-wrapper {
        width: 200px;
        height: 200px;
    }

    .team-content h4 {
        font-size: 20px;
    }

    .team-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .img-wrapper {
        width: 180px;
        height: 180px;
    }

    .team-item {
        padding: 20px;
    }

    .team-content h4 {
        font-size: 18px;
    }

    .team-content p {
        font-size: 14px;
    }
}
