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

.title-section {
    text-align: center;
    margin-bottom: 1rem;
}

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

@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 */
    }
}




.mobile-app-animation-section {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.mobile-app-animation-container {
    width: 700px;
    display: flex;
    justify-content: space-between;
    /*  background-color: blue; */
}


#fast-minus-4 {
    margin-left: -9rem;
    position: relative;
    z-index: 0;

}

#fast-minus-4 img {
    width: 75%;
}

#fast-0 {
    position: relative;
    z-index: 1;
    margin-top: -3rem;

}

#fast-0 img {
    width: 85%;
}

#fast-plus-4 {
    position: relative;
    margin-right: -9rem;
    z-index: 0;

}

#fast-plus-4 img {
    width: 75%;
}

.download-app-links {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.download-app-links img {
    object-fit: cover;
}

.app-store img,
.play-store img {
    heigth: 20px;
}


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

    #fast-minus-4 img {
        width: 55%;
    }

    #fast-0 img {
        width: 60%;
    }

    #fast-plus-4 img {
        width: 55%;
    }

    #fast-0 {
        position: relative;
        z-index: 1;
        margin-top: -1rem;

    }

    .mobile-app-animation-container {
        width: 500px;
        display: flex;
        justify-content: space-between;
        /* background-color: blue; */
    }
}



.card-parent-app {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.card-parent-app .card {
    background: radial-gradient(#95F8FB, #95F8FB);
    padding: 20px;
    min-height: 200px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
    color: black;
    text-align: center;
}

.card-parent-app .card_img img {
    width: 3rem;
    display: block;
    margin: auto;
}

.card-parent-app h2 {
    font-size: 1.2rem;
}


.product-information .section-title {
    margin: 3rem 0;
    background-color: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
}


@media screen and (max-width: 768px) {
    .card-parent-app {
        grid-template-columns: 100%;
    }
}