/* Careers Page Styles */

/* Why Join Us Section */
.careers-why-section {
    padding: 60px 0;
    background-color: #fff;
}

.careers-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.careers-why-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.careers-why-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #fcfcfc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #fff;
    border-color: #E60012;
}

.benefit-icon {
    font-size: 40px;
    color: #E60012;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Job Listing Styles (Applied to dynamic content) */
.job-listing-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

/* CTA Section */
.careers-cta-section {
    background: linear-gradient(135deg, #E60012 0%, #ff4d4d 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.careers-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.careers-cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.careers-cta-btn {
    display: inline-block;
    background: #fff;
    color: #E60012;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.careers-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .careers-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .careers-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .careers-cta-section {
        padding: 40px 20px;
    }
    
    .careers-cta-title {
        font-size: 24px;
    }
}
