.product-info {
    display: flex;
    padding: 20px 0;
    background-color: #fff;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%) 0 0,
                linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%) 0 0;
    background-size: 10px 10px;
    opacity: 0.1;
    pointer-events: none;
}

.product-info .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    z-index: 1;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    width:100%;
}

.product-info .right-side {
    width: 100%;
    text-align: left;
}

@media (min-width: 769px) {
    .product-info .container {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
    }

    .product-image {
        width: 40%;
        margin-right: 30px;
        max-width: 500px;
        margin-left: 2%;
    }

    .right-side {
        width: 60%;
        margin-left: 20%;
    }

    .highlight {
        font-size: 40px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .details {
        font-size: 20px;
        color: #171717;
        margin-top: 10px;
        line-height: 1.6;
    }


}

.conclusion {
    font-size: 18px;
    color: #e63946;
    margin-top: 20px;
}

}

@media (min-width: 768px) and (max-width: 1024px) {
    .product-info .container {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .product-image {
        width: 40%;
        margin-right: 10px;
        max-width: 230px;
    }

    .right-side {
        width: 55%;
    }

    .product-info h2 {
        font-size: 24px;
    }

    .highlight-text {
        font-size: 22px;
    }

    .details {
        font-size: 14px;
    }

    .conclusion {
        font-size: 16px;
    }

    .product-info p {
        font-size: 14px;
        line-height: 1.5;
    }
}
