.product-information {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.title-section {
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.image-text,
.image-text-reverse {
    display: grid;
    grid-template-columns: 49% 49%;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.product-information a {
    background-color: black;
    padding: .5rem 1rem;
    color: white;
}

.icon-text-parent {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content: space-between;
    padding-top: 1.5rem;
}

.product-information .text-with-icons__block-icon {
    width: 7rem;
    margin: auto;
}

.text-with-icons__block-title {
    text-align: center;
}

@media screen and (max-width: 768px) {

    .image-text,
    .image-text-reverse {
        grid-template-columns: 100%;
        gap: 1rem;
    }

    .image-text .image,
    .image-text-reverse .image {
        order: -1;
        /* Görseli mobilde üste taşır */
    }

    .icon-text-parent {
        grid-template-columns: 100%;
        gap: 1rem;
    }
}