.career-header {
    background: linear-gradient(135deg, #a94442 0%, #d9534f 100%);
    color: white;
    padding: 60px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-apply {
    background-color: #f0ad4e;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
}

.btn-apply:hover {
    background-color: #ec971f;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.job-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #d9534f;
}

.job-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.job-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-date {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.job-date i {
    margin-right: 5px;
}

.job-card:hover .btn-readmore {
    background: #d9534f;
    color: white;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 360px;
    height: 3px;
    background: #d9534f;
}