html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

.job-boxes, .career-container, .career-section {
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.career-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.career-container {
    max-width: 800px;
    margin: 0 auto;
}

.career-title {
    text-align: center;
    margin-bottom: 60px;
}

.career-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.career-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.job-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.job-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.job-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
}

.job-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.job-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.job-type {
    display: inline-block;
    padding: 5px 15px;
    background: #e3f2fd;
    color: #007bff;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.job-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.job-box-footer {
    margin-top: auto;
}

.apply-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #007bff, #00bcd4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.apply-button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .career-title h1 {
        font-size: 2rem;
    }
}

/* People Highlight Benefits */
.people-highlight-benefits {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    min-width: 120px;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.benefit-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.people-highlight-quote blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin: 0;
    padding: 0;
}

.people-highlight-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .people-highlight-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
        max-width: 200px;
    }
    
    .people-highlight-quote blockquote {
        font-size: 1.1rem;
    }
}

