.qps-careers-wrapper {
    background: rgba(218, 131, 40, 0.25);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.qps-job {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qps-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.qps-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.qps-apply-button {
    display: inline-block;
    background: #CB2027;
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.qps-apply-button:hover {
    background: #a71a20;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.qps-apply-button:visited,
.qps-apply-button:active,
.qps-apply-button:focus {
    color: #ffffff !important;
}

.qps-job {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qps-job:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.qps-job:last-child {
    margin-bottom: 0;
}

.qps-careers-heading {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin: 0 0 40px;
}

.qps-job-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.qps-job-info {
    flex: 1;
}

.qps-job-action {
    flex-shrink: 0;
}

.qps-apply-button {
    white-space: nowrap;
}

@media (max-width: 768px) {

    .qps-job-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .qps-job-action {
        margin-top: 20px;
    }

}