.hero-banner {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb') center/cover;
    height: 60vh;
    position: relative;
    border-bottom: 8px solid var(--bs-primary);
}
.container-recruitment
{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.content { position: relative; z-index: 1; }

.badge-price {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 10px 25px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.step-number {
    width: 60px; height: 60px;
    background: var(--bs-primary);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width:768px)
{
    .container-recruitment
    {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-recruitment {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-recruitment {
        max-width: 1140px;
    }
}