:root {

    --primary:#71e42f;
    --white:white;
}



.about-hero {
    background: linear-gradient(135deg, var(--primary));
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 50px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #333;
    transition: 0.3s;
}

.team-member:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.member-photo {
    height: 200px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.member-info {
    padding: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #333;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    padding-right: 50px;
}

.timeline:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-right: 30px;
}

.timeline-item:before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-year {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}