/* Page Header Styles */
.page-header {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}



.primary-gradient-header{
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.primary-gradient-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../assets/images/07-1536x1138.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.page-header-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.page-header-description {
    font-size: var(--text-xl);
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 0;
    line-height: var(--leading-relaxed);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}



/* Add responsive adjustments */
@media (max-width: 768px) {
    .primary-gradient-header {
        min-height: 150px;
    }
    
    .primary-gradient-header::before {
        opacity: 0.1;
    }
}