.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}