.about-section {
    margin-top:15px;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    color: white;
    text-align: center;
    margin-bottom: 40px;
}
.about-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.about-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}
.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
.mission-section {
    background: #f8f9fa;
    padding: 60px 20px;
    margin: 50px 0;
    border-radius: 20px;
}
.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.mission-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 25px;
}
.mission-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.stat-card {
    text-align: center;
    padding: 30px;
}
.stat-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.stat-label {
    color: #666;
    font-size: 18px;
    font-weight: 500;
}
.contact-cta {
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 50px 0;
}
.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.contact-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}
.email-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.email-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .about-section h1 {
        font-size: 32px;
    }
    .about-section p {
        font-size: 16px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}