/* Why Choose Us */
.why-choose-us {
    position: relative;
    background-image: url('../img/Images3/_DSC2496.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    min-height: 650px;
    padding: 100px 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

/* Light overlay so text stays readable, photo still visible */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 250, 244, 0.72);
    z-index: 1;
}

/* Push content above the overlay */
.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-us .mini-title {
    color: #FFA726;
    font-weight: bold;
}
.why-choose-us-text {
    color: var(--text-color);
    display: inline-block;
}
.why-choose-us-text-name {
    color: var(--secondary-orange);
    font-family: 'Playfair Display', serif !important;
    font-weight: bold;
    display: inline-block;
}
.why-choose-us p {
    color: var(--text-color, #333);
}
.btn-choose {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 5px;
}
.btn-choose:hover {
    background-color: var(--primary-orange-hover);
    color: white;
}
.btn-choose:active {
    background-color: var(--secondary-orange) !important;
    color: white !important;
}