.recruitment-section {
    padding: 60px 0;
    color: #ff7100;
    background-color: #f8f9fa;
}

.filter-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.job-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff7100;
    margin-bottom: 10px;
}

.job-info {
    color: #6c757d;
    margin-bottom: 15px;
}

.job-tag {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    background-color: #e9ecef;
    color: #495057;
    border-radius: 20px;
    font-size: 0.875rem;
}

.filter-label {
    font-weight: 600;
    margin-right: 10px;
}

.filter-select {
    margin-right: 20px;
    margin-bottom: 10px;
}
