.whychoose-module {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 60px 0;
    background-color: var(--brown-bright);
    overflow: hidden;
    height: 100%;
}
.whychoose-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    min-height: 500px;
}
.whychoose-content {
    width: 50%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.whychoose-title {
    font-weight: 400;
    text-transform: uppercase;
}
.whychoose-subtitle {
    font-weight: 400;
    text-transform: uppercase;
}
.whychoose-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.whychoose-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.whychoose-bullet {
    flex-shrink: 0;
    margin-top: 2px;
}
.whychoose-text {
    text-align: left;
}
.whychoose-image {
    position: absolute;
    top: -120px;
    align-items: center;
}

/* Smoothly shrink offsets for medium screens */
@media (max-width: 1240px) and (min-width: 1025px) {
    .whychoose-image {
        top: clamp(-80px, -6vw, -20px);
        right: clamp(-377px, -30vw, -50px);
    }
}
/* Max-width 1200px adjustments */
@media (max-width: 1200px) and (min-width: 1025px) {
    .whychoose-wrapper {
        max-width: 1000px;
    }
}
/* Tablet: 1024px and below - Complete layout change */
@media (max-width: 1024px) {
    .whychoose-module {
        padding: 50px 0;
        overflow: hidden;
    }
    .whychoose-wrapper {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding: 0 20px;
        max-width: 100%;
        position: static;
    }
    .whychoose-content {
        width: 100%;
        max-width: 600px;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        position: static;
        z-index: auto;
    }
    .whychoose-title {
        margin-bottom: 15px;
    }
    .whychoose-subtitle {
        margin-bottom: 30px;
    }
    .whychoose-list {
        align-items: center;
        gap: 20px;
    }
    .whychoose-item {
        justify-content: flex-start;
        gap: 12px;
        max-width: 500px;
    }
    .whychoose-image-wrapper {
        position: static;
        width: 80%;
        min-height: 100%;
        top: auto;
        bottom: auto;
        right: auto;
        order: 2;
    }
    .whychoose-image {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: 100%;
        object-fit: fit;
        object-position: center;
        display: block;
    }
}
/* Mobile: 768px and below */
@media (max-width: 768px) {
    .whychoose-module {
        padding: 40px 0;
        overflow: hidden;
    }
    .whychoose-wrapper {
        padding: 0 15px;
    }
    .whychoose-content {
        margin-bottom: 30px;
    }
    .whychoose-title {
        margin-bottom: 12px;
    }
    .whychoose-subtitle {
        margin-bottom: 25px;
    }
    .whychoose-list {
        gap: 18px;
    }
    .whychoose-image-wrapper {
        height: 280px;
        min-height: 280px;
    }
    .whychoose-image {
        height: 280px;
    }
    .whychoose-item {
        gap: 10px;
    }

    .whychoose-text {
        text-align: left;
    }
}
/* Small Mobile: 480px and below */
@media (max-width: 480px) {
    .whychoose-module {
        padding: 30px 0;
        overflow: hidden;
    }
    .whychoose-wrapper {
        padding: 0 15px;
    }
    .whychoose-content {
        margin-bottom: 25px;
    }
    .whychoose-title {
        margin-bottom: 10px;
    }
    .whychoose-subtitle {
        margin-bottom: 20px;
    }
    .whychoose-list {
        gap: 15px;
    }
    .whychoose-image-wrapper {
        height: 220px;
        min-height: 220px;
    }
    .whychoose-image {
        height: 220px;
    }
    .whychoose-item {
        align-items: flex-start;
        gap: 8px;
    }
}