/* ===== ABOUT PAGE ===== */

.page-hero {
    background: linear-gradient(135deg, #377850 0%, #327457 100%);
    color: #fff;
    padding: 48px 0 56px;
}

.page-hero-content {
    max-width: 700px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #78AF69;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 560px;
}

/* About Section */
.about-section {
    padding: 64px 0;
    background: #fff;
}

.about-text {
    max-width: 760px;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: #495057;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Stats Section */
.stats-section {
    padding: 56px 0;
    background: #F8F9FA;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #78AF69;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.4;
}

/* Values Section */
.values-section {
    padding: 64px 0;
    background: #fff;
}

.values-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px 28px;
    background: #F8F9FA;
    border-radius: 14px;
    border: 1px solid #E9ECEF;
    transition: all 0.25s ease;
}

.value-card:hover {
    border-color: #78AF69;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.value-num {
    font-size: 32px;
    font-weight: 800;
    color: rgba(120, 175, 105, 0.25);
    line-height: 1;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #6C757D;
    line-height: 1.6;
}

/* CTA */
.page-cta {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid #E9ECEF;
}

.page-cta-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.page-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.page-cta p {
    font-size: 15px;
    color: #6C757D;
    margin-bottom: 24px;
    line-height: 1.6;
}

.nav-link.active {
    background: #78AF69;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== ADAPTIVE ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 32px 0 40px;
    }
    .page-hero h1 {
        font-size: 26px;
    }
    .about-section {
        padding: 40px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-item {
        padding: 18px 12px;
    }
    .stat-number {
        font-size: 28px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-section .section-title {
        font-size: 22px;
    }
}
