/* CSS za Team Kartice */
.team-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #9E9270;
}

.team-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.team-role {
    color: #9E9270;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stilovi za Intro i Outro tekst */
.intro-text-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

.outro-section {
    background-color: #f7f7f7;
    /* Svetlo siva pozadina za kraj */
    padding: 80px 0;
    margin-top: 60px;
    border-radius: 5px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: inline-block;
    text-align: left;
}

.values-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #071c1f;
}

.values-list li i {
    color: #9E9270;
    margin-right: 15px;
}

.closing-statement {
    font-size: 20px;
    font-weight: 500;
    color: #071c1f;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
    display: inline-block;
}