﻿body {
}
.careers-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    color: #fff;
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.careers-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.view-positions-btn {
    height: 52px;
    padding: 0 32px;
    font-size: 18px;
    background: #fff;
    color: var(--primary-color);
    border: none;
}

    .view-positions-btn:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

.careers-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.why-work-with-us {
    padding: 80px 0;
    background: #fff;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: transform 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

    .benefit-icon i {
        font-size: 36px;
        color: #fff;
    }

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.open-positions {
    padding: 80px 0;
    background: #f8f9fa;
}

.positions-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-select {
    width: 300px;
}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .position-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

    .position-header h3 {
        font-size: 20px;
        margin: 0;
        color: var(--text-color);
    }

.department-tag {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.position-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.position-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

    .position-details span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
    }

.apply-btn {
    width: 100%;
}

.company-culture {
    padding: 80px 0;
    background: #fff;
}

.culture-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.culture-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.culture-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for careers page */
@media (max-width: 768px) {
    .careers-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .careers-title {
        font-size: 36px;
    }

    .careers-subtitle {
        font-size: 18px;
    }

    .filter-select {
        width: 100%;
        max-width: 300px;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .position-details {
        flex-direction: column;
        gap: 12px;
    }
} 