.about__cards {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}


.about__card {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 40px;
    border-radius: 12px;
}

.about__card h2,
.about__content h2 {
    color: #fff;
    line-height: 1.2;
}

.about__card h4 {
    color: rgba(245, 245, 245, 0.5);
    font-size: 42px;
    line-height: 1.2;
    margin: 0;

    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
}

.about__card p {
    color: #fff;
    line-height: 1.2;
}

.about__image {
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px;
}

.about__image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.about__items {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.about__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__button {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about__cards {
        padding-top: 40px;
    }

    .about__card {
        flex-direction: column;
    }

    .about__image {
        width: 100%;
    }

    .about__items {
        flex-direction: column;
        gap: 28px;
    }

    .about__items {
        flex-direction: column;
        gap: 28px;
    }

    .about__card h4 {
        font-size: 24px;
        width: 60px;
        height: 60px;
    }

    .about__card h2,
    .about__content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about__card p {
        font-size: 16px;
    }

    .about__button {
        padding: 16px;
    }
}

@media (min-width: 992px) {
    .about__card h4 {
        font-size: 42px;
        width: 100px;
        height: 100px;
    }

    .about__button {
        width: 50%;
    }

    .about__card {
        align-items: center;
        justify-content: space-between;
    }

    .about__image {
        width: 40%;

    }

    .about__item {
        width: 30%;
    }

    .about__card h2,
    .about__content h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .about__card p {
        font-size: 22px;
    }

    .about__button {
        padding: 24px;
    }
}