
.about-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 48px 16px;
}

.about-modern h2 {
    text-align: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 36px;
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
}

.about-container {
    max-width: 1130px;
    margin: 0 auto;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.about-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-4px);
    }

.about-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.about-card h3 {
    color: #2e7d32;
    font-size: 1.08rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.98rem;
}

.values-section {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: center;
}

    .values-section h3 {
        color: #2e7d32;
        font-size: 1.2rem;
        margin-bottom: 18px;
        font-weight: 600;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .value-item:hover {
        transform: translateY(-2px);
        background: #e8f5e9;
    }

.value-icon {
    font-size: 1.1rem;
    color: #2e7d32;
}

.value-item span {
    font-size: 0.98rem;
    font-weight: 500;
    color: #2e7d32;
}

@media (max-width: 768px) {
    .about-modern {
        padding: 32px 8px;
    }

        .about-modern h2 {
            font-size: 1.3rem;
        }

    .about-cards {
        gap: 12px;
    }

    .about-card {
        padding: 14px;
    }

    .values-section {
        padding: 16px 8px;
    }

    .values-grid {
        gap: 8px;
    }
}