/*=============== JOBS LIST SECTION ===============*/
.jobs-list {
    padding: 4rem 1.5rem;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #68B92E;
    margin-bottom: 2rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card-link {
    text-decoration: none;
    color: inherit;
}

.job-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.job-title {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.job-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.job-tasks {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.job-tasks li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.job-tasks li i {
    color: #68B92E;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.cta-text {
    color: #68B92E;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

/*=============== RESPONSIVE DESIGN ===============*/
@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
