/* Careers Page Specific Styles */

.main-content {
  width: 100vw;
}

.careers-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    position: fixed;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
}

.main-content .careers-hero {
    padding: 120px 20px 40px;
    text-align: left;
}

.careers-hero .container, .jobs-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #000;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.jobs-section {
    padding: 60px 20px 240px;
}

.job-accordion {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.job-item {
    border-top: 1px solid black;
    overflow: hidden;
}
.job-item:last-child {
  border-bottom: 1px solid black;
}

.job-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 16px 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.job-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #000;
    padding: 32px 0;
}

.job-header svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.job-item.active .job-header svg {
    transform: rotate(180deg);
}

.job-content {
    padding-bottom: 24px;
    display: none;
}

.job-item.active .job-content {
    display: block;
}

.job-section {
    margin-bottom: 32px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #000;
    font-weight: 600;
}

.job-section p {
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.job-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.job-section li {
    line-height: 1.6;
    margin-bottom: 8px;
    color: #333;
}

a.apply-button {
  padding: 12px 56px;
  margin: 32px 0;
  font-size: 12px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .careers-hero {
        padding: 40px 16px 30px;
    }
    
    .careers-hero h1 {
        font-size: 2rem;
    }
    
    .jobs-section {
        padding: 40px 16px 200px;
    }
    
    .job-header {
        padding: 20px;
    }
    
    .job-header h2 {
        font-size: 1.3rem;
    }
    
    .job-content {
        padding: 0 20px 20px;
    }
}
