.careers_title{
    font-size: 36px; 
    text-align: center; 
    margin-bottom: 20px; 
    font-weight: normal;
}

.careers_description{
    text-align: center; 
    font-size: 18px; 
    margin-bottom: 30px;
}

.job-list{
    display: grid; 
    grid-template-columns: 
    repeat(2, 1fr); 
    gap: 100px;
}

.job-item{
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    overflow: hidden;
}

.job_tile {
    margin-left: 10px;
    margin-bottom: 5px;
}

.job-title{
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.job-title a{
    color: #333; 
    text-decoration: none;
}


.job-body{
    margin-top: 10px; 
    color: #555;
}

.job-body p{
    margin: 5px 0;
}