.about-page-content {
    padding: 100px 0 60px;
}
.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-page-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-page-header h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c5f2d;
}
.about-page-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}
.about-page-section {
    margin-bottom: 80px;
}
.about-page-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}
.about-page-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}
.mission-values {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    font-size: 40px;
    color: #2c5f2d;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.value-card p {
    color: #666;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.team-member {
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
}
.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.team-member p {
    color: #666;
    font-style: italic;
}
.cta-section {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e401f 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #2c5f2d;
}
.back-to-home {
    text-align: center;
    margin-top: 40px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 10px;
}
.stat-label {
    color: #666;
    font-size: 16px;
}