.career-header {
    padding: 2.5em;
    font-size: 1.75rem;
    font-weight: 500;
    background: #E8F2F9;
    text-align: center;
    color: #053763;
    margin-bottom: 2rem;
}
.career-sub-heading {
    font-size: 1rem;
    font-weight: 400;
    color: #262626;
    text-align: center;
}
.job-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 30px;
    margin-bottom: 2rem;
}
.career-container {
    width: 61em;
    margin-top: 10px;
}
.category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #656464;
    text-align: left;
    border-radius: 5px;
    border: 1px solid #D7D7D7;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.category-btn:hover {
    color: white;
    background-color: #053763;
}
.category-btn.active {
    color: white;
    margin-bottom: 0px;
    background-color: #053763;
}
.category-btn:hover .symbol,
.category-btn.active .symbol {
    color: white;
}
.category-title {
    flex-grow: 1; 
    text-align: left;
    margin-left: 16px; 
    margin-top: 2px;
}
.symbol {
    color: #053763;
    font-size: 24px;
    margin-left: 6px;
}
.icon {
    font-size: 24px;
    color: #BFBFBF;
    margin-right: 6px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}
.rotate {
    transform: rotate(90deg);
}
.job-description {
    display: none;
    padding: 43px;
    border-radius: 5px;
    margin-bottom: 12px;
    border: 1px solid #D7D7D7;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.how-to-apply {
    position: sticky;
    top: 10px; 
    width: 26.5%;
    height: 26em;
    padding: 26px;
    border-radius: 4px;
    background-color: #E8F2F9;
    border: 1px solid #D6D6D6;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.open-position {
    position: sticky;
    top: 10px; 
    /* height: 26em; */
    padding: 26px;
    border-radius: 4px;
    border: 1px solid #D6D6D6;
    box-shadow: 0px 4px 4px 0px #00000040;
}
.apply-header {
    color: #053763;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
}
.apply-section-text {
    color: #4F4545;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}
.apply-section-list {
    color: #4F4545;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex; 
    align-items: flex-start; 
}
.apply-section-list::before {
    content: "→";
    color: #053763; 
    font-weight: 500;
    margin-right: 8px;
    flex-shrink: 0; 
}
.how-to-apply ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.apply-btn {
    display: inline-block; 
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    /* margin-top: 2rem; */
    padding: 10px 36px; 
    border-radius: 5px;
    background-color: #053763;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease; 
}
.apply-btn:hover {
    color: white;
    text-decoration: none;
    background-color: #042a50; 
    transform: translateY(-2px); 
}
.apply-btn:active {
    transform: translateY(0); 
}
.sticky-buttons {
    display: none;
}  
@media (max-width: 768px) {
    .career-header {
        font-size: 20px;
        padding: 1.5em;
        margin-bottom: 0rem;
    }
    .career-sub-heading {
        font-size: 14px;
        padding: 0 10px;
    }
    .job-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0rem;
    }
    .career-container {
        width: 100%;
    }
    .category-btn {
        font-size: 14px;
        padding: 8px;
    }
    .category-title {
        font-size: 12px;
        margin-left: 10px;
    }
    .symbol, .icon {
        font-size: 20px;
    }
    .icon {
        margin-left: 10px;
    }
    .open-position {
        width: 100%;
    }
    .job-description {
        padding: 20px;
        font-size: 12px;
    }
    .how-to-apply {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    .apply-header {
        font-size: 18px;
    }
    .apply-section-text, .apply-section-list {
        font-size: 14px;
    }
    .apply-btn {
        display: none;
        font-size: 12px;
        padding: 8px 24px;
    }
    .sticky-buttons > .apply-btn {
        display: block;
        margin-top: 0px;
        font-size: 15px;
    }
    .sticky-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 25px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        gap: 12px;
        z-index: 9999;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
}