/* Career Page Styles */
.career-page {
    position: relative;
    min-height: 80vh;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-content {
    position: relative;
    color: #000000;
}

.career-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-description {
    font-size: 1.25rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.career-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.career-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.career-benefits li i {
    color: #5C6BC0;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-career-cv {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4A5BB0 0%, #5C6BC0 100%);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.4);
    border: none;
}

.btn-career-cv:hover {
    background: linear-gradient(135deg, #3A4BA0 0%, #4A5BB0 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 192, 0.5);
}

.btn-career-cv i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-career-cv:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .career-title {
        font-size: 2.75rem;
    }
    
    .career-description {
        font-size: 1.15rem;
    }
    
    .career-benefits li {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .career-page {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .career-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .career-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .career-benefits {
        margin-bottom: 2.5rem;
        padding: 0 20px;
    }
    
    .career-benefits li {
        font-size: 1rem;
        margin-bottom: 1rem;
        gap: 12px;
    }
    
    .career-benefits li i {
        font-size: 1.2rem;
    }
    
    .btn-career-cv {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .career-page {
        padding: 60px 0;
    }
    
    .career-title {
        font-size: 1.75rem;
    }
    
    .career-description {
        font-size: 1rem;
    }
    
    .career-benefits li {
        font-size: 0.95rem;
    }
    
    .btn-career-cv {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}
