.about_company {
    margin: 0 auto;
    padding: 20px 10px 0 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
}

.about_hero {
    background: linear-gradient(135deg, #f3fff3 0%, #ffffff 100%);
    border: 1px solid #d9ead7;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.about_hero_badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    background: #e9f8e8;
    color: #1f7a36;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.about_hero h1 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.2;
    color: #111827;
}

.about_hero_text {
    margin: 0 auto 22px;
    font-size: 18px;
    color: #4b5563;
}

.about_hero_actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.about_btn_primary {
    background: #2f8f3a;
    color: #fff;
    border: 1px solid #2f8f3a;
}

.about_btn_primary:hover {
    background: #277830;
    border-color: #277830;
    color: #fff;
}

.about_btn_secondary {
    background: #fff;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.about_btn_secondary:hover {
    background: #f9fafb;
    color: #111827;
}

.about_card,
.about_contact_box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
}

.about_card h2,
.about_contact_box h2 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.25;
    color: #111827;
}

.about_features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about_feature {
    background: #f9fafb;
    border: 1px solid #edf0f2;
    border-radius: 14px;
    padding: 18px;
}

.about_feature_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.about_feature_text {
    color: #4b5563;
}

.about_points {
    display: grid;
    gap: 12px;
}

.about_point {
    position: relative;
    padding-left: 18px;
    color: #374151;
}

.about_point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2f8f3a;
}

.about_contact_box p {
    margin: 0 0 16px;
    color: #4b5563;
}

.about_contact_main {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.about_contact_meta {
    display: grid;
    gap: 8px;
    color: #374151;
}

.about_company a {
    color: #1e6bd6;
    text-decoration: none;
}

.about_company a:hover {
    text-decoration: underline;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .about_company {
        padding: 18px 12px 32px;
    }

    .about_hero {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .about_hero h1 {
        font-size: 28px;
    }

    .about_hero_text {
        font-size: 16px;
    }

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

    .about_card,
    .about_contact_box {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .about_card h2,
    .about_contact_box h2 {
        font-size: 21px;
    }

    .about_btn {
        width: 100%;
    }

    .about_hero_actions {
        flex-direction: column;
    }
}