.elementor-608066 .elementor-element.elementor-element-3e6ea79{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1a8f35d *//* Glavni kontejner */
.features-container {
    max-width: 100%;
    margin: 20px auto;
}

.features-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

/* Siva kutija sa zaobljenim uglovima */
.features-box {
    background-color: #f5f5f5; /* Svetlo siva boja sa slike */
    border-radius: 12px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dve jednake kolone */
    gap: 25px 40px; /* Razmak između redova i kolona */
}

/* Pojedinačna stavka */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Okrugli beli omotač za sliku */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0; /* Sprečava smanjivanje kruga */
}

.feature-icon-wrapper img {
    width: 80%; /* Slika unutar kruga */
    height: auto;
    object-fit: contain;
}

/* Tekst pored ikone */
.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

/* Responzivnost za mobilne telefone (jedna kolona) */
@media (max-width: 600px) {
    .features-box {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */