/* Careers Page Styles */

.page-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.careers-section {
    padding: 80px 0;
}

.job-posting {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.job-header {
    border-bottom: 2px solid #3498db;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.job-title {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.job-meta span {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #555;
    border-left: 3px solid #3498db;
}

.job-meta i {
    margin-right: 8px;
    color: #3498db;
}

.job-content h4 {
    color: #2c3e50;
    font-size: 1.3em;
    margin: 30px 0 15px;
    font-weight: 600;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

.job-requirements, .job-benefits {
    list-style: none;
    padding: 0;
}

.job-requirements li, .job-benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.job-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.job-benefits li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.apply-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #e9ecef;
}

.apply-section h4 {
    margin-top: 0;
    color: #2c3e50;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-method {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    text-align: center;
}

.contact-method h5 {
    color: #3498db;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-method i {
    margin-right: 8px;
}

.why-work-section {
    background: #f8f9fa;
    padding: 50px 30px;
    border-radius: 12px;
    margin-top: 50px;
}

.why-work-section h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2em;
    font-weight: 700;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2em;
    }
    
    .job-posting {
        padding: 25px;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .job-title {
        font-size: 1.8em;
    }
} 