.info-section {
    width: 100%;
    padding: 20px 15px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.info-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 50px;
}

.info-media-wrapper {
    width: 50%;
    display: flex;
}

.info-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.info-content-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.info-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 16px 0 0;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.steps-list strong {
    font-weight: 800;
    color: #000;
}

.integrated-cta {
    margin-top: 20px;
    width: 100%;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 900px) {
    .info-section {
        padding: 0 15px 40px;
    }

    .info-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .info-media-wrapper {
        width: 100%;
        display: block;
    }

    .info-gif {
        height: auto;
        width: 100%;
    }

    .info-content-wrapper {
        width: 100%;
        padding: 0;
    }
}