.engagement-hero-section {
    background-image: url('/static/home/default_en/images/engagement-hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: left;
    color: #fff;
}
.engagement-hero-bg{
    height: 600px;
    width: 100%;
    background-position: center center;
    background-size: 100% 100%;
    filter: blur(50px);
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}



.engagement-hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.engagement-hero-badge{
    margin-bottom: 20px;
    font-size: 14px;
}
.engagement-hero-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.engagement-hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.engagement-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.engagement-hero-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.engagement-hero-btn-primary {
    background-color: #141543;
    color: #fff;
}

.engagement-hero-btn-primary:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

.engagement-hero-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.engagement-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .engagement-hero-section {
        height: 500px;
        text-align: center;
    }
    .engagement-hero-bg{
        height: 500px;
    }
    .engagement-hero-title {
        font-size: 28px;
    }
    
    .engagement-hero-subtitle {
        font-size: 14px;
    }
    
    .engagement-hero-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .engagement-hero-section {
        height: 300px;
        background-size: auto 100%;
        background-position: center right;
    }
    .engagement-hero-bg{
        height: 300px;
    }
    
    .engagement-hero-title {
        font-size: 24px;
    }
    
    .engagement-hero-subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    .engagement-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .engagement-hero-btn {
        width: 180px;
        padding: 7px 18px;
        font-size: 12px;
    }
}
}