
.ep-hero{
    width:100%;
    background:#f8fafc;
    padding:80px 0;
    overflow:hidden;
    font-family:Arial,sans-serif;
}
.ep-container{
    width:1200px;
    max-width:92%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}
.ep-left{
    flex:1;
}
.ep-tag{
    display:inline-block;
    background:#ffffff;
    border:1px solid #dbe4ee;
    padding:10px 18px;
    border-radius:999px;
    color:#4b5563;
    font-size:14px;
    margin-bottom:25px;
}
.ep-title{
    font-size:56px;
    line-height:1.1;
    font-weight:700;
    color:#0f172a;
    margin-bottom:24px;
}
.ep-sub{
    font-size:20px;
    line-height:1.7;
    color:#475569;
    margin-bottom:35px;
}
.ep-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.ep-btn-primary{
    background:#1d4ed8;
    color:#fff;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}
.ep-btn-primary:hover{
    background:#1e40af;
}
.ep-btn-secondary{
    background:#fff;
    color:#111827;
    padding:16px 34px;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    border:1px solid #d1d5db;
    display:inline-block;
}
.ep-right{
    flex:1;
}
.ep-image{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    min-height:520px;
    background:url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat;
    box-shadow:0 30px 60px rgba(0,0,0,0.15);
}
.ep-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.55),rgba(0,0,0,0.15));
}
.ep-card{
    position:absolute;
    left:30px;
    bottom:30px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.2);
    border-radius:20px;
    padding:24px;
    color:#fff;
    max-width:340px;
}
.ep-card-small{
    font-size:13px;
    color:#bfdbfe;
    margin-bottom:8px;
}
.ep-card-title{
    font-size:24px;
    font-weight:600;
    line-height:1.4;
}

@media(max-width:991px){
    .ep-container{
        flex-direction:column;
    }
    .ep-title{
        font-size:42px;
    }
    .ep-image{
        min-height:420px;
    }
}
