﻿.about-hero {
    background: linear-gradient(135deg, #43695b, #009639);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

    .about-hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .about-hero p {
        font-size: 18px;
        max-width: 850px;
        margin: 0 auto;
    }

.about-content {
    background: #f5f7fa;
    padding: 50px 0;
}

.about-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

    .about-card h2 {
        color: #43695b;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .about-card p {
        color: #374151;
        line-height: 1.7;
    }

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

    .values-grid h3 {
        color: #009639;
        font-weight: 700;
        margin-bottom: 8px;
    }

.about-closing {
    background: #2D2926;
    color: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}
