/* Kudumija - Simple Card with Large Image Styles (High Fidelity) */

#kako-odabrati {
    background: #fff;
    padding: 100px 0; /* Balanced vertical space */
}

/* SECTION LEFT CONTENT */
#kako-odabrati .section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.222vw;    /* 32px @ 1440px */
    font-weight: 400;
    line-height: 2.5vw;    /* 36px @ 1440px */
    color: #1a1a1a;
    margin-bottom: 1.667vw;
    letter-spacing: 0;
}

#kako-odabrati .body-text,
#kako-odabrati .body-text p,
#kako-odabrati .body-text *,
#kako-odabrati .body-text span {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.111vw;    /* 16px @ 1440px */
    font-weight: 400;
    line-height: 1.667vw;  /* 24px @ 1440px */
    color: #444;
    margin-bottom: 1.667vw;
    letter-spacing: 0;
}

/* HELP CARD - 340x272px based on 1440px design */
.help-card {
    background: #F4F4F4;
    border-radius: 4px;
    padding: 40px 34px;
    width: 100%;
    max-width: 340px;
    min-height: 272px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.help-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.111vw;    /* 16px @ 1440px */
    font-weight: 600;
    line-height: 1.667vw;  /* 24px @ 1440px */
    color: #1a1a1a;
    margin-bottom: 0.833vw;
}

.help-card .card-p,
.help-card .card-p p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.111vw;    /* 16px @ 1440px */
    font-weight: 400;
    line-height: 1.667vw;  /* 24px @ 1440px */
    color: #555;
    margin-bottom: 1.667vw;
}

/* RED BUTTON - 182x42px */
.help-card .btn-red-sm {
    background-color: #CC4443;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 100%;
    max-width: 182px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: auto;
}

.help-card .btn-red-sm:hover {
    background-color: #b33231;
}

/* RIGHT IMAGE - 687x423px */
.how-to-choose-img-container {
    width: 100%;
    max-width: 687px;
    margin-left: auto;
}

.how-to-choose-img-container img {
    width: 100%;
    height: 423px;
    object-fit: cover;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .help-card { max-width: 100%; min-height: auto; }
    .how-to-choose-img-container { max-width: 100%; margin-top: 40px; }
    .how-to-choose-img-container img { height: auto; min-height: 250px; }
    
    #kako-odabrati .section-title {
        font-size: 22px;
        line-height: 28px;
    }
    #kako-odabrati .body-text,
    #kako-odabrati .body-text p {
        font-size: 16px;
        line-height: 24px;
    }
    .help-card h4 {
        font-size: 16px;
        line-height: 24px;
    }
    .help-card .card-p,
    .help-card .card-p p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    #kako-odabrati {
        overflow-x: hidden; /* Extra safety for mobile bleed */
    }
}

