.notfound-hero-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: var(--bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    align-items: center;
}

.notfound-hero-inner {
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.notfound-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.notfound-banner-block {
    text-align: center;
    position: relative;
    z-index: 3;
}

.notfound-banner-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.notfound-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
	color:#fff;
}

.notfound-text {
    font-size: 18px;
    opacity: 0.9;
	color:#fff;
}

@media (max-width: 768px) {
   
    .notfound-title { font-size: 32px; }
    .notfound-text { font-size: 16px; }
    .notfound-hero-inner { padding: 60px 0; }
}

@media (max-width: 480px) {
    .notfound-title { font-size: 26px; }
    .notfound-hero-inner { padding: 40px 0; }
}
