.hiring-hecta-container-b825b01d {
    font-family: inherit;
    text-align: center;
    padding: 40px 20px;
}
.hiring-hecta-header {
    margin-bottom: 60px;
}
.hiring-hecta-title {
    color: #0066ff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}
.hiring-hecta-subtitle {
    color: #0066ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.hiring-hecta-timeline {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 0;
}
.hiring-hecta-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #0a1f44;
    z-index: 0;
    transform: translateY(-50%);
}
.hiring-hecta-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.hiring-hecta-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 15px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 220px;
    margin: 0 15px;
}
.hiring-hecta-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #0a1f44;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}
.hiring-hecta-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1f44;
    margin: 10px 0 20px;
    min-height: 40px;
    line-height: 1.2;
}
.hiring-hecta-icon {
    color: #0066ff;
    font-size: 60px;
    margin-top: auto;
}
.hiring-hecta-icon svg {
    width: 60px;
    height: 60px;
    fill: #0066ff;
}
.hiring-hecta-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #0a1f44;
    z-index: 2;
}
@media (max-width: 768px) {
    .hiring-hecta-timeline {
        flex-direction: column;
        gap: 40px;
    }
    .hiring-hecta-timeline::before {
        display: none;
    }
    .hiring-hecta-step {
        width: 100%;
        max-width: 300px;
    }
    .hiring-hecta-card {
        margin: 0;
        min-height: auto;
    }
    .hiring-hecta-arrow {
        display: none;
    }
}
