/* Header Image */
.header-image-container {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Breadcrumbs */
.breadcrumbs-container {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    margin-right: 8px;
    color: #6c757d;
}

.breadcrumbs li:last-child {
    color: #495057;
    font-weight: 500;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs .fa-chevron-right {
    font-size: 10px;
    margin: 0 5px;
    color: #adb5bd;
}