/* =================================
   O Nama Stranica - Redizajn Boja
================================= */

/* Jednostavno zaglavlje za unutarnje stranice */
.page-header-simple {
    height: 180px;
    background-color: #f8f9fa; /* << AŽURIRANO */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #dee2e6; /* << AŽURIRANO */
}

.page-header-simple .page-title {
    font-size: 42px;
    text-transform: uppercase;
    color: #212529; /* << AŽURIRANO */
}

/* Glavni sadržaj "O nama" */
.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Glavni tekstualni blok */
.about-text {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.about-text h2 {
    font-size: 32px;
    color: #212529; /* << AŽURIRANO */
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #6c757d; /* << AŽURIRANO */
    text-align: left;
}

/* Grid za donji red s dva stupca */
.about-features-grid {
    display: flex;
    gap: 40px;
    border-top: 1px solid #dee2e6; /* << AŽURIRANO */
    padding-top: 60px;
}

.about-values {
    flex: 1;
}

.company-details-wrapper {
    flex: 1;
    padding: 25px;
    background-color: #f8f9fa; /* << AŽURIRANO */
    border-radius: 5px;
    border-left: 5px solid #2596be; /* << AŽURIRANO: Plava akcentna linija */
}

.about-values h3,
.company-details-wrapper h3 {
    font-size: 24px;
    color: #212529; /* << AŽURIRANO */
    margin-top: 0;
    margin-bottom: 20px;
}

.about-values ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-values li i {
    color: #2596be;
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.company-details dl {
    font-size: 15px;
}

.company-details dt {
    float: left;
    clear: left;
    width: 100px;
    font-weight: bold;
    color: #212529;
}

.company-details dd {
    margin-left: 120px;
    padding-bottom: 10px;
    color: #6c757d; /* << AŽURIRANO */
}

.company-details dd a {
    color: #2596be; /* << AŽURIRANO: Plavi linkovi */
    text-decoration: none;
    font-weight: 500;
}

.company-details dd a:hover {
    text-decoration: underline;
}

/* Mobilni prikaz za "O Nama" */
@media (max-width: 820px) {
    .about-features-grid {
        flex-direction: column;
    }
}