.page-header {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Background.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
}

.page-header h1,
.page-header .page-subtitle {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-filter {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.search-filters {
    background-color: rgba(0, 0, 0, 0.8);  /* Changed back to black with 80% opacity */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Style form elements for better visibility on dark background */
.search-filters label {
    color: #fff;
}

.search-filters select,
.search-filters input {
    border: 1px solid #444;
}

.search-filters #search-button {
    background-color: #4CAF50;
    color: white;
}

@media (max-width: 768px) {
    .page-header::before {
        background-position: bottom center;
        opacity: 0.25;
    }
}