﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fbf3 0%, #e8f5e8 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.group-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Breadcrumb */
.breadcrumb {
   /* padding: 20px 0;*/
    margin-bottom: 30px;
}

    .breadcrumb a {
        color: #96c93e;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: #7ab317;
        }

    .breadcrumb span {
        color: #7f8c8d;
        margin: 0 10px;
    }

/* Header Section */
.group-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1) 0%, rgba(122, 179, 23, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .group-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
        opacity: 0.1;
        z-index: 1;
    }

    .group-header > * {
        position: relative;
        z-index: 2;
    }

    .group-header h1 {
        font-size: 3.2rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 800;
    }

.group-subtitle {
    font-size: 1.3rem;
    color: #96c93e;
    font-weight: 600;
    margin-bottom: 30px;
}

.header-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, #96c93e, #7ab317);
    margin: 0 auto;
    border-radius: 3px;
}

/* Main Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Team Leader Section */
.team-leader-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.leader-image-container {
    position: relative;
    margin-bottom: 25px;
}

.leader-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #96c93e;
    box-shadow: 0 15px 40px rgba(150, 201, 62, 0.3);
    transition: all 0.4s ease;
}

    .leader-image:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(150, 201, 62, 0.4);
    }

.leader-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
}

.leader-name {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.leader-position {
    font-size: 1.1rem;
    color: #96c93e;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Program Features Section */
.program-features {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

    .section-icon i {
        font-size: 2rem;
        color: white;
    }

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-title:hover .section-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(150, 201, 62, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 30px;
}

.feature-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding: 30px;
    background: #f8fbf3;
    border-radius: 15px;
    border-left: 4px solid #96c93e;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(150, 201, 62, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .feature-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(150, 201, 62, 0.15);
    }

        .feature-card:hover::before {
            left: 100%;
        }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(150, 201, 62, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-content h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-content p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(150, 201, 62, 0.1) 0%, rgba(122, 179, 23, 0.05) 100%);
    border-radius: 15px;
}

.impact-stat {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #96c93e;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 20px;
    margin-top: 50px;
}

    .cta-section h2 {
        color: white;
        font-size: 2.2rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #96c93e;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

    .cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
        gap: 20px;
        background: #2c3e50;
        color: white;
    }

    .cta-button i {
        transition: transform 0.4s ease;
    }

    .cta-button:hover i {
        transform: translateX(8px);
    }

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-leader-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .group-header h1 {
        font-size: 2.5rem;
    }

    .program-features {
        padding: 30px 25px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

        .section-icon i {
            font-size: 1.5rem;
        }

    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .group-page {
        padding: 15px;
    }

    .group-header h1 {
        font-size: 2rem;
    }

    .leader-image {
        width: 180px;
        height: 180px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}
