
.page-banner {
    position: relative;
    height: 400px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}


.page-banner .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 95, 170, 0.6); 
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 14px;
}

.banner-content p a {
    color: #fff;
    text-decoration: none;
}

.banner-content p a:hover {
    text-decoration: underline;
}

