.careers-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1920/1080');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.careers-hero-content {
    max-width: 800px;
    padding: 2rem;
}

.careers-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.careers-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Search Section */
.careers-search-section {
    background: #f8f9fa;
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.careers-search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.careers-search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.careers-search-input:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

/* Jobs Section */
.careers-jobs-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.careers-jobs-list {
    overflow-y: auto;
    max-height: 800px;
}

.careers-job-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.careers-job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.careers-job-card.active {
    border-color: #2c3e50;
}

.careers-job-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.careers-job-meta {
    display: flex;
    gap: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.careers-job-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Job Details Section */
.careers-job-details {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.careers-job-details h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.careers-details-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.careers-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
}

.careers-job-description {
    color: #495057;
    line-height: 1.6;
}

.careers-job-description h3 {
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem;
}

.careers-apply-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 2rem;
    width: 100%;
}

.careers-apply-btn:hover {
    background: #34495e;
}

/* Responsive Design */
@media (max-width: 968px) {
    .careers-jobs-section {
        grid-template-columns: 1fr;
    }

    .careers-job-details {
        position: static;
        margin-top: 2rem;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }
}