/* =================================
   Usluge Stranica - Redizajn Boja
================================= */

.page-header-simple {
    height: 180px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.page-header-simple .page-title {
    font-size: 42px;
    text-transform: uppercase;
    color: #212529;
}

.service-row {
    padding: 80px 0;
}

.service-row:nth-child(even) {
    background-color: #f8f9fa;
}

.service-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-row-reverse .service-grid {
    flex-direction: row-reverse;
}

.service-image,
.service-text {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-text h3 {
    font-size: 28px;
    color: #212529;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.service-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 24px;
    width: 6px;
    background-color: #2596be;
    border-radius: 2px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #6c757d;
}

/* Mobilni prikaz */
@media (max-width: 820px) {
    .service-row {
        padding: 50px 0;
    }

    .service-grid,
    .service-row-reverse .service-grid {
        flex-direction: column;
    }

    .service-text h3 {
        margin-top: 30px;
    }
}