.nz-hero{
position:relative;
height:70vh;
overflow:hidden;
}

.nz-hero img{
width:100%;
height:100%;
object-fit:cover;
}

.nz-hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.nz-hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
max-width:850px;
z-index:2;
}

.nz-hero-text h1{
font-size:3.5rem;
font-weight:700;
margin-bottom:20px;
color:#FFD700;
}

.nz-hero-text p{
font-size:1.2rem;
line-height:1.8;
}

.nz-stats{
padding:60px 0;
background:#f8f9fa;
}

.nz-stats .container{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.stat-card{
background:#fff;
padding:25px;
width:220px;
text-align:center;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.stat-card h2{
color:#851A1A;
font-size:2.5rem;
}

.nz-block{
padding:80px 0;
}

.nz-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.feature-card{
padding:30px;
border-radius:15px;
background:#fff;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.nz-calendar{
padding:80px 0;
background:#f5f5f5;
}

.calendar-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.calendar-card{
background:#fff;
padding:30px;
text-align:center;
border-radius:15px;
}

.nz-university-section{
padding:80px 0;
}

.nz-card{
border:none;
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.institution-header{
display:flex;
gap:20px;
align-items:center;
}

.institution-header img{
width:90px;
height:90px;
object-fit:contain;
}

.nz-cost{
padding:80px 0;
background:#f8f9fa;
}

.nz-cost h2,
.nz-calendar h2,
.nz-block h2,
.nz-university-section h2{
color:#851A1A;
margin-bottom:30px;
}

@media(max-width:768px){

.nz-hero-text h1{
font-size:2rem;
}

.institution-header{
flex-direction:column;
text-align:center;
}

}