/* ===================================
   Block: Why Us
   =================================== */
#dd-why-us {
    background-color: var(--bckg);
    float: left;
    width: 100%;
}

.why-us-wrap {
    align-items: stretch;
}

/* Left column */
.why-us-left {
    width: 50%;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 60px;
}

.why-us-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 54px;
    color: var(--main);
    margin: 0 0 40px;
}

/* Items grid — 2 columns */
.why-us-items-wrap {
    gap: 0;
    align-items: flex-start;
}

.why-us-item {
    width: 50%;
    padding-right: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-us-item:nth-child(even) {
    padding-right: 0;
}

.why-us-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-icon {
    flex-shrink: 0;
    display: block;
}

.why-us-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--main);
    margin: 0;
}

.why-us-item-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    color: var(--main);
    margin: 0;
    padding-left: 32px;
}

/* Right column — full height image */
.why-us-right {
    width: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
}

.why-us-img-wrap {
    flex: 1;
}

.why-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .why-us-left {
        padding-right: 40px;
    }

    .why-us-title {
        font-size: 32px;
        line-height: 46px;
    }
}

@media screen and (max-width: 1199px) {
    .why-us-left {
        padding-right: 30px;
    }

    .why-us-title {
        font-size: 28px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .why-us-wrap {
        flex-direction: column;
    }

    .why-us-left,
    .why-us-right {
        width: 100%;
    }

    .why-us-left {
        padding-right: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .why-us-right {
        height: 320px;
    }
}

@media screen and (max-width: 767px) {
    .why-us-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 28px;
    }

    .why-us-item {
        width: 100%;
        padding-right: 0;
    }

    .why-us-right {
        height: 260px;
    }
}

@media screen and (max-width: 600px) {
    .why-us-left {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .why-us-right {
        height: 220px;
    }
}
