.open-roles-section {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    background-color: var(--background-color-1);
}

.open-roles-section h2 {
    font-size: 1.4em;
    font-weight: 450;
    color: var(--font-color-1);
    margin: 0;
    padding-bottom: 10px;
}

.divider {
    border-bottom: 1px solid #e0e0e0;
    margin: 10px 0;
    width: 90%;
    max-width: 1250px;
}

.open-roles-section p {
    font-size: 1.25em;
    color: #666;
    margin: 10px 0;
    
}

.hiring-process-section {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    padding-bottom: 50px;
    background-color: var(--background-color-1);
}

.hiring-process-section h2 {
    font-size: 1.8em;
    font-weight: 450;
    color: var(--font-color-1);
    padding-bottom: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step-content {
    margin-left: 40px;
}

.step-title {
    font-weight: 450;
    font-size: 1.2em;
    margin: 0;
    color: var(--font-color-1);
}

.step p {
    margin: 5px 0 0;
    font-weight: 300;
    font-size: 1em;
    color: var(--font-color-1);
}

.step::before {
    content: "";
    position: absolute;
    left: 15px;
    top: -100%;
    bottom: 0;
    width: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.step::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 1px solid #666;;
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 1200px) {
    .hiring-process-section h2 {
        padding-left: 30px;
        padding-bottom: 10px;
    }

    .open-roles-section {
        padding-left: 30px;
    }
}