/* Why Choose Section Styles for Service Pages */
.why-choose-section {
    background-color: #EFF9F9;
    height: 555px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Left Column - Content */
.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-title {
    width: 630px;
    height: 96px;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    margin: 0;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.title-line-1 {
    color: #000000;
}

.title-line-2 {
    color: #000000;
}

.title-highlight {
    color: #E62D5B;
}

.why-choose-description {
    width: 630px;
    height: 81px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    margin: 0;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-choose-point-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.point-text {
    width: 500px;
    height: 27px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

/* Right Column - Images */
.why-choose-images {
    display: grid;
    grid-template-columns: 305px 305px;
    gap: 20px;
    justify-content: center;
    align-items: start;
    height: 435px;
}

.image-column-left {
    height: 100%;
}

.why-choose-image-main {
    width: 305px;
    height: 435px;
    object-fit: cover;
    border-radius: 8px;
}

.image-column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 435px;
}

.why-choose-image-top,
.why-choose-image-bottom {
    width: 305px;
    height: 207.5px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-section {
        min-height: 1000px;
    }

    .why-choose-container {
        padding: 0 30px;
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .why-choose-title,
    .why-choose-description {
        width: 100%;
        height: auto;
        max-width: 630px;
    }

    .why-choose-images {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 630px;
        margin: 0 auto;
        height: 100%;
    }

    .why-choose-image-main {
        width: 100%;
        height: 100%;
    }

    .image-column-right {
        gap: 15px;
        height: 100%;
    }

    .why-choose-image-top,
    .why-choose-image-bottom {
        width: 100%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        height: auto;
        padding: 40px 0;
    }

    .why-choose-section {
        min-height: 700px;
    }

    .why-choose-content {
        gap: 10px;
    }

    .why-choose-container {
        padding: 0 20px;
        gap: 30px;
    }

    .why-choose-title {
        font-size: 32px;
        line-height: 120%;
    }

    .why-choose-description {
        font-size: 16px;
    }

    .point-text {
        font-size: 16px;
        width: auto;
        height: auto;
    }

    .why-choose-images {
        gap: 20px;
        max-width: 100%;
    }

    .image-column-left {
        height: 100%;
    }

    .why-choose-image-main {
        height: 100%;
    }

    .image-column-right {
        gap: 15px;
        height: 100%;
    }

    .why-choose-image-top,
    .why-choose-image-bottom {
        height: 50%;
    }
}

@media (max-width: 440px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .why-choose-container {
        padding: 0 20px;
    }

    .why-choose-title {
        font-size: 32px;
        width: 100%;
        height: auto;
    }

    .why-choose-description {
        font-size: 16px;
        font-weight: 500;
        width: 100%;
        height: auto;
    }

    .why-choose-points {
        gap: 12px;
    }

    .point-text {
        font-size: 16px;
    }

    .why-choose-images {
        max-width: 100%;
    }

    .image-column-right {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-choose-image-top,
    .why-choose-image-bottom {
        height: 135px;
    }
}