.join-us-banner {
    background-image: url('../images/Join\ us.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.job-list {
    max-width: 900px;
    margin: 20px auto;
    padding: 10px;
}

.job-item {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 4;

}

.job-item:hover {
    border-color: #000;
}

.job-item:hover .arrow i {
    transform: translateX(5px);

}

.job-item:hover .arrow {
    color: #000;
    
}
.job-item.highlighted {
    border: 2px solid #D4D4D4;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.job-col span {
    color: #D4D4D4;
}

.job-col p {
    font-size: 24px;
}

.job-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-right: auto;
    margin-left: 20px;
}

.job-info .experience,
.job-info .deadline {
    font-size: 14px;
    color: #666;
}

.job-info strong {
    color: #333;
}

.arrow {
    font-size: 20px;
    color: #D4D4D4;
    cursor: pointer;
}

.arrow i {
    transition: transform 0.2s ease-in-out;
}


.benefit-icon {
    background-color: #d4d4d4;
    width: 4rem;
    height: 4rem;
    border-radius: 5px;
}

.benefit-icon img {
    margin: .8rem;
}