/* Why choose us — left intro + right 2×2 cards */
.why-choose-section {
    font-family: "Kanit", "Montserrat", sans-serif;
    background: #fff;
}

.why-choose-section__intro {
    text-align: left;
}

.why-choose-section__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00c853;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.why-choose-section__title {
    font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.why-choose-section__text {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.why-choose-section__text p {
    margin-bottom: 0.75rem;
}

.why-choose-section__text p:last-child {
    margin-bottom: 0;
}

.why-choose-section__cta {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #00c853;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.why-choose-section__cta:hover {
    color: #00a844;
    opacity: 0.92;
}

.why-choose-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .why-choose-section__grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.15rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-card:hover {
    border-color: #c8e6c9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.why-choose-card__img-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    border: 2px solid #b2dfdb;
    overflow: hidden;
    flex-shrink: 0;
}

.why-choose-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-card__body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.why-choose-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 0.4rem 0;
}

.why-choose-card__desc {
    font-size: 0.88rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.why-choose-card__desc p {
    margin-bottom: 0.4rem;
}

.why-choose-card__desc p:last-child {
    margin-bottom: 0;
}
