:root {
    --primary-color: #4299e1;
    --primary-dark: #2b6cb0;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
}

.careers-hero {
    background: linear-gradient(rgba(66, 153, 225, 0.1), rgba(66, 153, 225, 0.2));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.careers-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.benefit-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.job-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.job-type {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.apply-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.apply-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
}

.culture-section {
    padding: 80px 0;
    background: white;
}

.culture-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 36px;
    }
}