.career-content-section {
    padding: 64px 0;
}

.career-content-box {
    background: #F7F7F7;
    padding: 48px;
    max-width: 1154px;
    margin: 0 auto;
    text-align: center;
}

.career-content-title {
    color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
    font-size: 48px;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 24px;
}

.career-content-description {
    color: var(--Brand-Colors-Text-Colors-Charcoal, #37373E);
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    margin:64px 0 0;
}

.career-content-description p {
    margin-bottom: 16px;
}

.career-content-description p:last-child {
    margin-bottom: 0;
}

.career-content-button {
    margin-top: 64px;
}

.career-button {
    display: inline-block;
    background: var(--Brand-Colors-Primary-Red, #ED2224);
    color: #fff;
    padding: 10px 32px;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.3s ease;
    min-height: 48px;
    border: 2px solid var(--Brand-Colors-Primary-Red, #ED2224);
}

.career-button:hover {
    background: #c41e20;
    border-color: #c41e20;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 34, 36, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .career-content-button {
        margin-top: 32px;
    }
    .career-content-section {
        padding: 48px 0;
    }
    
    .career-content-box {
        /* padding: 40px 24px; */
        padding: 0px!important;
        margin: 0 16px;
        background-color:#fff;
    }
    
    .career-content-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .career-content-description {
        font-size: 16px;
        margin-top:24px;
        margin-bottom: 0px;
        padding: 16px;
        text-align: left;
        background: var(--brand-colors-background-section-colors-off-white, #F7F7F7);
    }
    
    .career-button {
        padding: 14px 28px;
        font-size: 15px;
    }
}