.page-hero {
    background: linear-gradient(135deg, #2e8b57, #228b22);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #2e8b57;
    margin: 2rem 0 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #666;
}

.feature-list i {
    color: #2e8b57;
    margin-right: 0.5rem;
}

.values {
    background: white;
    padding: 4rem 0;
}

.values h2 {
    text-align: center;
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 15px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: #2e8b57;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2e8b57;
    margin-bottom: 1rem;
}

.impact {
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    padding: 4rem 0;
}

.impact h2 {
    text-align: center;
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2e8b57;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.team {
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    color: #2e8b57;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-image i {
    font-size: 3rem;
    color: #2e8b57;
}

.team-member h3 {
    color: #2e8b57;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #228b22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:not(.member-role) {
    color: #666;
    font-size: 0.95rem;
}

.nav-link.active {
    color: #90ee90 !important;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
