.hero-content {
    margin-top: 60px;
}

.desktop_section-label {
    color: #F3E1B5;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.what-we-do-desktop {
    background-color: #030301;
}

.desktop-impact-section {
    padding: 80px 20px;
    /*background-color: #030301;*/
    font-family: Sulphur Point;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #F3E1B5;
}

.desktop-impact-section p {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #e0e0e0;

}

.flow-row {
    display: flex;
    justify-content: center;
    /* centriranje kartica u redu */
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.flow-card {
    /*background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    font-size: 1.1rem;
    color: #333;
    width: 280px;
    height: 140px;
    /* fiksna visina za sve */
    /*display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;*/

    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.3s ease;
    cursor: default;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 140px;
    position: relative;
    /* da pseudo elementi i slika funkcionišu */
    overflow: hidden;
    /* da slika ne izlazi iz granica kartice */
}

.flow-card:hover {
    transform: translateY(-8px);
    background-color: #2a2a2a;
}

.flow-card img.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    /* tamni overlay efekt */
    z-index: 0;
    border-radius: 8px;
    /* da prati oblik kartice */
}

.flow-card>*:not(img.card-bg) {
    position: relative;
    z-index: 1;
    /* tekst i drugi sadržaj iznad slike */
}

/* CTA sekcija */
.cta-desktop {
    background-color: #030301;
    padding: 100px 20px;
    color: white;
}

.container-desktop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    /* vertikalno centriranje */
    justify-content: space-between;
    /* razmak između leve i desne strane */
    flex-wrap: nowrap;
}

.left-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 70%;
}

.cta-desktop h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #F3E1B5;
}

.cta-desktop p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}



/* RESPONSIVE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .flow-card {
        width: 100%;
        max-width: 400px;
    }

    .flow-row {
        flex-direction: column;
        align-items: center;
    }

    .desktop-impact-section h2 {
        font-size: 2.2rem;
    }

    .what-we-do-desktop h2 {
        font-size: 2.2rem;
    }


    .container-desktop {
        flex-direction: column;
        align-items: flex-start;
        /* poravnaj levo */
        padding: 0 10px;
    }

    .mob_process h2 {
        font-size: 2.2rem;
    }

    .cta-desktop {
        padding-top: 30px;
        /* smanji gornji padding */
        padding-bottom: 80px;
        /* možeš ostaviti ili podesiti po želji */
    }

    .left-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        /* razmak između teksta i dugmeta */
        text-align: center;
    }

    .cta-desktop h2 {
        font-size: 2.2remrem;
        margin-bottom: 15px;
    }

    .cta-desktop p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .btn-gold-custom {
        align-self: center;
        /* centriraj dugme horizontalno */
        padding: 12px 25px;
        font-size: 1rem;
        white-space: normal;
        /* dozvoli prelamanje dugmeta ako je potrebno */
    }
}