﻿/* Main container */
.wrapper {
    margin: auto;
    padding: 50px 20px;
}

/* Header */
.careersheader {
    text-align: center;
    margin-bottom: 40px;
}

    .careersheader h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #604696;
    }

    .careersheader p {
        color: #777;
        font-size: 1.1rem;
    }

/* Section spacing */
.section {
    margin-bottom: 35px;
}

/* Highlight text */
.highlight {
    color: #604696;
    font-weight: 600;
}

/* Sub headings */
.sub-title {
    color: #604696;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Divider */
.divider {
    height: 1px;
    background: #e6e3f0;
    margin: 30px 0;
}

/* Quote */
.quote {
    border-left: 4px solid #604696;
    padding-left: 18px;
    font-style: italic;
    color: #444;
}

/* Apply section */
.apply-box {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

/* Button */
.apply-btn {
    display: inline-block;
    border: 1px solid #604696;
    color: #604696;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

    .apply-btn:hover {
        background: #604696;
        color: #fff;
    }
