  /* Green Team Cards Design */
    .team-section-green {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .team-header-green {
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

    .team-title-green {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        font-family: 'Rabar_021', sans-serif;
    }

    .team-subtitle-green {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 20px;
        font-family: 'Rabar_021', sans-serif;
    }

    .team-description-green {
        font-size: 17px;
        line-height: 1.8;
        max-width: 650px;
        margin: 0 auto;
        font-family: 'Rabar_022', sans-serif;
    }

    .team-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .team-card-green {
        position: relative;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform-style: preserve-3d;
    }

    .team-card-green:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .team-card-background {
        position: relative;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #7FB069 0%, #6FA055 25%, #5E8A44 50%, #4D7A33 75%, #3C6A22 100%);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
    }

    .team-card-green:hover .team-card-background {
        box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        background: linear-gradient(135deg, #8BC575 0%, #7FB069 25%, #6FA055 50%, #5E8A44 75%, #4D7A33 100%);
    }

    .team-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.15;
        overflow: hidden;
    }

    .logo-watermark {
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 48px;
        font-weight: 900;
        color: rgba(255,255,255,0.2);
        font-family: 'Rabar_021', sans-serif;
        letter-spacing: 2px;
    }

    .geometric-shapes {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
    }

    .diamond-shape {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.15);
        transform: rotate(45deg);
        border-radius: 8px;
    }

    .triangle-shape {
        position: absolute;
        top: 80px;
        right: 40px;
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(255,255,255,0.1);
        transform: rotate(15deg);
    }

    .team-photo-container {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 85%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 20px 20px;
    }

    .team-member-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 15px 15px 0 0;
        transition: all 0.4s ease;
        filter: brightness(1.05) contrast(1.1);
    }

    .team-card-green:hover .team-member-photo {
        transform: scale(1.02);
        filter: brightness(1.1) contrast(1.15);
    }

    .team-member-info {
        background: #fff;
        padding: 25px 20px;
        text-align: center;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        position: relative;
        z-index: 2;
        margin-top: -5px;
    }

    .member-name {
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 8px 0;
        font-family: 'Rabar_021', sans-serif;
        line-height: 1.3;
    }

    .member-position {
        font-size: 16px;
        color: #7f8c8d;
        margin: 0;
        line-height: 1.5;
        font-family: 'Rabar_022', sans-serif;
    }

    .btn-contact-green {
        background: linear-gradient(135deg, #7FB069, #5E8A44);
        color: #fff;
        border: none;
        padding: 15px 35px;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(127, 176, 105, 0.3);
        font-family: 'Rabar_022', sans-serif;
        display: inline-block;
    }

    .btn-contact-green:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(127, 176, 105, 0.4);
        background: linear-gradient(135deg, #8BC575, #7FB069);
        text-decoration: none;
        color: #fff;
    }

    /* Responsive Design for Green Team Cards */
    @media (max-width: 1200px) {
        .team-cards-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .team-card-background {
            height: 380px;
        }
    }

    @media (max-width: 992px) {
        .team-title-green {
            font-size: 32px;
        }

        .team-subtitle-green {
            font-size: 20px;
        }

        .team-cards-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .team-card-background {
            height: 360px;
        }

        .logo-watermark {
            font-size: 40px;
        }
    }

    @media (max-width: 768px) {
        .team-title-green {
            font-size: 28px;
        }

        .team-subtitle-green {
            font-size: 18px;
        }

        .team-description-green {
            font-size: 16px;
        }

        .team-cards-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .team-card-background {
            height: 340px;
        }

        .team-member-info {
            padding: 20px 15px;
        }

        .member-name {
            font-size: 20px;
        }

        .member-position {
            font-size: 15px;
        }

        .btn-contact-green {
            padding: 12px 28px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .team-cards-wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .team-card-background {
            height: 320px;
        }

        .logo-watermark {
            font-size: 32px;
            top: 20px;
            left: 20px;
        }

        .diamond-shape {
            width: 30px;
            height: 30px;
        }

        .triangle-shape {
            border-left-width: 15px;
            border-right-width: 15px;
            border-bottom-width: 25px;
        }
    }

    @media (max-width: 480px) {
        .team-title-green {
            font-size: 24px;
        }

        .team-subtitle-green {
            font-size: 16px;
        }

        .team-card-background {
            height: 300px;
        }

        .team-member-info {
            padding: 18px 12px;
        }

        .member-name {
            font-size: 18px;
        }

        .member-position {
            font-size: 14px;
        }

        .btn-contact-green {
            padding: 10px 24px;
            font-size: 15px;
        }
    }
