/* Section Dividers Styling */

/* Add horizontal orange line dividers between major sections */
.section-divider {
    width: 100%;
    height: 2px;
    background-color: #ff6f00;
    margin: 30px 0;
}

/* Style for the careers page specific dividers */
.careers .section-divider {
    margin: 40px 0 30px;
    display: block;
}

/* Add a subtle shadow effect to the dividers */
.section-divider::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 111, 0, 0.3);
    margin-top: 2px;
}
