 .why-choose-one {
    position: relative;
    display: block;
    padding: 80px 0;
    background-color: #ffffff; /* white background */
    color: #5a5859; /* default text color */
}

.section-title__tagline {
    color: #00b3db;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title__title {
    color: #1c5572;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    margin-top: 10px;
}

.section-title__title span {
    color: #00b3db;
}

.why-choose-one__text {
    font-size: 16px;
    line-height: 26px;
    color: #5a5859;
    margin-bottom: 25px;
}

/* Points box */
.why-choose-one__points-box ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-one__points-box ul li:hover {
    background: #00b3db;
    color: #ffffff;
}

.why-choose-one__points-icon-inner {
    flex: 0 0 50px;
    height: 50px;
    margin-right: 15px;
}

.why-choose-one__points-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-one__points-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1c5572;
    margin-bottom: 6px;
}

.why-choose-one__points-box ul li:hover .why-choose-one__points-content h3,
.why-choose-one__points-box ul li:hover .why-choose-one__points-content p {
    color: #ffffff;
}

.why-choose-one__points-content p {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    color: #5a5859;
}

/* Image box */
.why-choose-one__img-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .why-choose-one {
        padding: 60px 0;
    }

    .section-title__title {
        font-size: 24px;
        line-height: 34px;
    }

    .why-choose-one__points-content h3 {
        font-size: 16px;
    }

    .why-choose-one__points-content p {
        font-size: 13px;
        line-height: 20px;
    }
}
