/* Careers Section */
.careers {
    background-color: #f5f5f7;
    padding: 100px 20px;
    margin-top: 12px;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.careers-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.careers-content > p {
    font-size: 24px;
    color: #86868b;
    margin-bottom: 60px;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.career-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 18px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.career-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.career-intro {
    font-size: 17px;
    color: #86868b;
    margin-bottom: 25px;
    line-height: 1.4;
}

.job-details {
    border-top: 1px solid #d2d2d7;
    padding-top: 25px;
}

.job-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.job-details ul {
    list-style: none;
}

.job-details li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #d2d2d7;
}

.job-details li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.job-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.job-details p {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.job-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #86868b;
}