.hiring-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e6e6e6;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 20px auto;
}

.cosmic-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cosmic-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #e2c6ff;
    text-shadow: 0 0 10px rgba(226, 198, 255, 0.5);
}

.cosmic-header p {
    font-size: 18px;
    opacity: 0.9;
}

.emphasis-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.position-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.position-icon {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.position-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e2c6ff;
    text-align: center;
}

.position-card ul {
    list-style: none;
}

.position-card li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.position-card i {
    color: #d4af37;
    margin-right: 10px;
}

.selection-process {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.selection-process h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e2c6ff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #d4af37;
    color: #1a1a2e;
    border-radius: 50%;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 15px;
}

.application-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
}

.application-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e2c6ff;
}

.application-section p {
    margin-bottom: 20px;
    font-size: 17px;
}

.application-requirements {
    margin-top: 20px;
}

.application-requirements h4 {
    margin-bottom: 15px;
    color: #e2c6ff;
    font-size: 20px;
}

.application-requirements ul {
    list-style: none;
}

.application-requirements li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.application-requirements i {
    color: #d4af37;
    margin-right: 15px;
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
    .hiring-container {
        padding: 20px;
    }
    
    .cosmic-header h2 {
        font-size: 28px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
