.angie-team-box-810aad19 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    align-items: center;
    position: relative;
    max-width: 600px;
}
.angie-team-box-810aad19 .team-box-left {
    position: relative;
    flex-shrink: 0;
}
.angie-team-box-810aad19 .team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #a3d977, #4fb8b3);
}
.angie-team-box-810aad19 .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #fff;
}
.angie-team-box-810aad19 .team-social {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.angie-team-box-810aad19 .team-social:hover {
    color: #4fb8b3;
    transform: translateX(-50%) translateY(-2px);
}
.angie-team-box-810aad19 .team-box-right {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.angie-team-box-810aad19 .team-name {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #246d73;
    font-weight: 600;
}
.angie-team-box-810aad19 .team-designation {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #888;
}
.angie-team-box-810aad19 .team-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.angie-team-box-810aad19 .team-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.angie-team-box-810aad19 .team-learn-more-btn {
    padding: 10px 20px;
    background-color: #4fb8b3;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.angie-team-box-810aad19 .team-learn-more-btn:hover {
    background-color: #246d73;
}
.angie-team-box-810aad19 .team-action {
    align-self: flex-start;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}
.angie-team-box-810aad19 .team-action:hover {
    color: #4fb8b3;
}

/* Popup Styles */
.team-popup-modal {
    display: none;
    position: fixed !important;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}
body.angie-popup-open {
    overflow: hidden !important;
}
.team-popup-content {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
    animation: popupFadeIn 0.3s ease;
}
@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.team-popup-close {
    color: #888;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}
.team-popup-close:hover,
.team-popup-close:focus {
    color: #333;
    text-decoration: none;
}
.team-popup-title {
    margin-top: 0;
    color: #246d73;
    font-size: 28px;
    margin-bottom: 20px;
}
.team-popup-desc,
.team-popup-additional {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}
.team-popup-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #4fb8b3;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.team-popup-btn:hover {
    background-color: #246d73;
    color: #fff;
}

@media (max-width: 767px) {
    .angie-team-box-810aad19 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .angie-team-box-810aad19 .team-buttons-wrapper {
        justify-content: center;
    }
    .angie-team-box-810aad19 .team-action {
        align-self: center;
    }
    .team-popup-content {
        width: 95%;
        padding: 25px;
        max-height: 85vh;
    }
    .team-popup-title {
        font-size: 24px;
    }
}