.about-container {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
}

.about-content h2 {
    color: #69B254;
    font-size: 2rem;
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-content ul {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 12px;
}

.about-content strong {
    color: #69B254;
    font-weight: 600;
}

.highlight-box {
    background: rgba(105, 178, 84, 0.1);
    border-left: 4px solid #69B254;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    color: #69B254;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(105, 178, 84, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(105, 178, 84, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    color: #69B254;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-cta {
    background: linear-gradient(135deg, #69B254 0%, #558a43 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.contact-cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.contact-cta a {
    display: inline-block;
    background: #fff;
    color: #69B254;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .about-content {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
