.velmenydiv {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: flex-start;
    align-items: flex-start; /* Független igazítás a flex elemeken belül */
}

.velemeny-item {
    padding: 40px;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    height: 335px;
}

.velemeny-item:nth-child(1), 
.velemeny-item:nth-child(4) {
    background: linear-gradient(180deg, 
        rgba(38, 83, 201, 0.8) 0%,   /* #2653c9, 80% átlátszósággal */
        rgba(95, 207, 203, 0.7) 50%, /* #5fcfcb, 70% átlátszósággal */
        rgba(115, 227, 173, 0.6) 100% /* #73e3ad, 60% átlátszósággal */
    );
    border-radius: 30px;
}

    .velemeny-item:nth-child(2), .velemeny-item:nth-child(3) {
        background: transparent linear-gradient(180deg, #2653c9 0%, #241B4600 100%) 0% 0% no-repeat padding-box;
        border-radius: 30px;
        opacity: 1;
    }

    .velemeny-item:nth-child(2) {
        margin-top: 35px;
    }

    .velemeny-item:nth-child(4) {
        margin-top: 35px;
    }



.velemeny-kep img {
    width: 100px  !important;
    height: 100px  !important;
    border-radius: 50%  !important;
    object-fit: cover;
}
.velemeny-tartalom h2 {
    margin: 10px 0;
    letter-spacing: 0px;
    color: #FFFFFF;
    margin-bottom: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 17px;
    font-weight: 700;
}

p.ceg {
    letter-spacing: 0px;
    color: #FFFFFF;
    line-height: 18px;
    margin-bottom: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 11px;
}

p.tartalomtext {
    letter-spacing: 0px;
    color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
}

.velemeny-tartalom {
    display: flex;
    flex: 2;
    flex-direction: column;
}

.velemeny-kep {
    display: flex;
    flex: 1;
}

.idezo {
    flex: 1;
    color: white;
    font-size: 85px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: -30px;
}

.vonalfelso {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.vonal {
    height: 1px;
    background-color: white;
    flex: 3;
}

.vonalalso {
    background-color: white;
    width: 60px;
    height: 1px;
    margin-top: 35px;
}



/* Mobil stílusok */
@media (max-width: 768px) {
    .velmenydiv {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .velemeny-item {
        padding: 30px;
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        height: auto;
        flex-direction: column;
    }

    .velemeny-kep img {

        margin-bottom: 45px;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {

    .velemeny-item {
        padding: 50px 20px;
        width: calc(50% - 20px);
        margin-bottom: 0px;
        display: flex
    ;
        align-items: center;
        height: auto;

    }



}