.about-company {
    padding: 1rem 1rem;
    width: 96%;
    margin: 0 auto;
}

.about-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1 1 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 95%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-cards {
    flex: 1 2 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-card {
    background: #f9f9f9;
    border-left: 5px solid #0761b0;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.about-card p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.about-card strong {
    background: #97B0F0;
    border-radius: 3px;
    padding: 0 4px;
    color: #000;
}

@media (max-width: 768px) {
    .about-company {
        padding: 0.5rem;
        width: 100%;
    }

    .about-row, .about-row.reverse {
        flex-direction: column;
        margin-bottom: 1.7rem;
        gap: 1.2rem;
    }

    .about-image {
        order: 1;
        margin: 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .about-image img {
        max-height: 200px;
        width: 100%;
    }

    .about-cards {
        order: 2;
        gap: 1rem;
    }

    .about-card {
        padding: 1rem;
    }

    .about-card h3 {
        font-size: 1.1rem;
    }

    .about-card p {
        font-size: 0.9rem;
    }

    .about-row:first-child .about-image {
        order: 1;
    }

    .about-row:first-child .about-cards {
        order: 2;
    }

    .about-row.reverse {
        flex-direction: column;
    }

    .about-row.reverse .about-image {
        order: 1;
    }

    .about-row.reverse .about-cards {
        order: 2;
    }
}
