@import url('https://fonts.googleapis.com/css2?family=Figtree&display=swap');

html,
body {
    margin: 0;
    font-family: 'Figtree';
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-top: 4%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
}

.navbar .logo-left,
.navbar .logo-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.logo-left {
    left: 20px;
}

.logo-right {
    right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    position: relative;
    padding: 8px 16px;
    color: #12A44F;
    text-decoration: none;
    font-weight: 300;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a.active {
    background-color: #12A44F;
    color: white;
    border-color: #12A44F;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 50px;
}

.nav-links a:not(.active):hover {
    background-color: #e6f2e9;
    border-radius: 20px;
}

/* Hamburger menu icon */
.menu-icon {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: #12A44F;
    border-radius: 2px;
}

#careers {
    height: auto;
    width: 100%;
    position: relative;
    margin-top: 0;
    margin-bottom: 10%;
    top: 0;
}
#careers .title {
    width: 100%;
    text-align: center;
    color: #12A44F;
    font-size: 4em;
    letter-spacing: 2px;
}
.hiring_img {
    position: absolute;
    right: 10%;
    top: -3%;
}
.hiring {
    color: #07411B;
    font-size: 3em;
    font-weight: bold;
    width: fit-content;
    position: relative;
    left: 20vh;
}
.description {
    position: relative;
    width: fit-content;
    left: 20vh;
    color: #5a5a5a;
    font-size: 1.8em;
}
.description a {
    color: #095222;
}
.career-line1 {
    text-align: center;
}
.career-line1 img {
    width: 85%;
}

/* New CSS for dynamic job listings */
.job-listing {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
}
.job-listing .career_container {
    position: relative;
    width: 81%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 20px;
}
.job-listing .job-details-flexbox {
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.job-listing h4 {
    grid-column: 1 / 2;
    color: #5a5a5a;
    font-size: 1.4em;
    letter-spacing: 1px;
    margin-top: 1%;
    margin-bottom: 0;
}
.job-listing h2 {
    grid-column: 1 / 2;
    color: #12A44F;
    font-size: 4em;
    letter-spacing: 1px;
    margin-top: 1%;
    margin-bottom: 1%;
}
.job-listing p {
    grid-column: 1 / 2;
    color: #5a5a5a;
    font-size: 1.4em;
    margin-top: 0;
    width: 90%;
}
.job-listing button {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
    background-color: #12A44F;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 2em;
    border-radius: 50px;
    align-self: center;
    justify-self: end;
}
.job-listing button:hover {
    background-color: #07411B;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.job-listing:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 2px;
    background-color: #5a5a5a;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4em;
    color: #5a5a5a;
}
.icon {
    width: 30px;
    max-width: 100%;
    max-height: auto;
}
#footer {
    background-image: url(../home/footer_bg.png);
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
    margin-top: auto;
}
#footer button {
    position: relative;
    z-index: 3;
    display: block;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background-color: white;
    color: #12A44F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5em;
    font-family: 'Figtree';
}
#footer a {
    text-decoration: none;
}

/* Responsive styles */
@media screen and (min-width: 900px) and (max-width: 1024px){
    html, body {
        overflow-x: hidden;
    }
    .logo-left, .logo-right {
        height: auto;
        width: 120px;
    }
    #careers {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 0;
        margin-bottom: 10%;
        top: 0;
    }
    #careers .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 2px;
    }
    .hiring_img {
        position: absolute;
        right: -4%;
        top: -3%;
        scale: 0.8;
    }
    .hiring {
        color: #07411B;
        font-size: 3em;
        font-weight: bold;
        width: fit-content;
        position: relative;
        left: 9%;
    }
    .description {
        position: relative;
        width: 60%;
        left: 9%;
        color: #5a5a5a;
        font-size: 1.8em;
    }
    .description a {
        color: #095222;
    }
    .career-line1 {
        text-align: center;
    }
    .career-line1 img {
        width: 85%;
    }
    
    .job-listing {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }
    .job-listing .career_container {
        position: relative;
        width: 81%;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 20px;
    }
    .job-listing .job-details-flexbox {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .job-listing h4 {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.4em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 0;
    }
    .job-listing h2 {
        grid-column: 1 / 2;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 1%;
    }
    .job-listing p {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.4em;
        margin-top: 0;
        width: 90%;
    }
    .job-listing button {
        grid-column: 2 / 3;
        grid-row: 1 / span 3;
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 2em;
        border-radius: 50px;
        align-self: center;
        justify-self: end;
    }
    .job-listing button:hover {
        background-color: #07411B;
        transition: background-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    
    .job-listing:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background-color: #5a5a5a;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.4em;
        color: #5a5a5a;
    }
    .icon {
        width: 30px;
        max-width: 100%;
        max-height: auto;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding-top: 20px;
        padding-bottom: 10px;
        text-align: center;
    }
    #footer button {
        position: relative;
        z-index: 3;
        display: block;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 12px 20px;
        background-color: white;
        color: #12A44F;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.5em;
    }
    #footer a {
        text-decoration: none;
    }
}
@media screen and (min-width: 500px) and (max-width: 900px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
        font-family: 'Figtree';
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    #careers {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 0;
        margin-bottom: 10%;
        top: 0;
    }
    #careers .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 2px;
    }
    .hiring_img {
        visibility: hidden;
    }
    .hiring {
        color: #07411B;
        font-size: 3em;
        font-weight: bold;
        width: fit-content;
        position: relative;
        left: 9%;
    }
    .description {
        position: relative;
        width: 70%;
        left: 9%;
        color: #5a5a5a;
        font-size: 1.5em;
    }
    .description a {
        color: #095222;
    }
    .career-line1 {
        text-align: center;
    }
    .career-line1 img {
        width: 85%;
    }
    
    .job-listing {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }
    .job-listing .career_container {
        position: relative;
        width: 81%;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 20px;
    }

    .job-listing .job-details-flexbox {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .job-listing h4 {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.4em;
        letter-spacing: 1px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .job-listing h2 {
        grid-column: 1 / 2;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 1%;
    }
    .job-listing p {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.3em;
        margin-top: 0;
        width: 90%;
    }
    .job-listing button {
        grid-column: 2 / 3;
        grid-row: 1 / span 3;
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 1.8em;
        border-radius: 50px;
        align-self: center;
        justify-self: end;
    }
    .job-listing button:hover {
        background-color: #07411B;
        transition: background-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    
    .job-listing:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background-color: #5a5a5a;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.4em;
        color: #5a5a5a;
    }
    .icon {
        width: 30px;
        max-width: 100%;
        max-height: auto;
    }
}
@media screen and (min-width: 376px) and (max-width: 500px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
        font-family: 'Figtree';
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #careers {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 0;
        margin-bottom: 10%;
        top: 0;
    }
    #careers .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 2px;
    }
    .hiring_img {
        visibility: hidden;
    }
    .hiring {
        color: #07411B;
        font-size: 2em;
        font-weight: bold;
        width: fit-content;
        position: relative;
        left: 9%;
    }
    .description {
        position: relative;
        width: 70%;
        left: 9%;
        color: #5a5a5a;
        font-size: 1.4em;
    }
    .description a {
        color: #095222;
    }
    .career-line1 {
        text-align: center;
    }
    .career-line1 img {
        width: 85%;
    }
    
    .job-listing {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }

    .job-listing .career_container {
        position: relative;
        width: 81%;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 20px;
    }

    .job-listing .job-details-flexbox {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .job-listing h4 {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.1em;
        letter-spacing: 1px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .job-listing h2 {
        grid-column: 1 / 2;
        color: #12A44F;
        font-size: 2em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 1%;
    }
    .job-listing p {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1em;
        margin-top: 0;
        width: 90%;
    }
    .job-listing button {
        grid-column: 2 / 3;
        grid-row: 1 / span 3;
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 15px 10px;
        font-size: 1em;
        border-radius: 50px;
        align-self: center;
        justify-self: end;
    }
    .job-listing button:hover {
        background-color: #07411B;
        transition: background-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    
    .job-listing:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background-color: #5a5a5a;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1em;
        color: #5a5a5a;
    }
    .icon {
        width: 30px;
        max-width: 100%;
        max-height: auto;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding-top: 20px;
        padding-bottom: 35px;
        text-align: center;
    }
    #footer h3 {
        font-size: 0.8em;
    }
    #footer p {
        font-size: 0.7em;
    }
    #footer button {
        position: relative;
        z-index: 3;
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 12px 20px;
        background-color: white;
        color: #12A44F;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.4em;
    }
    #footer a {
        text-decoration: none;
    }
}
@media screen and (min-width: 321px) and (max-width: 376px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
        font-family: 'Figtree';
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #careers {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 0;
        margin-bottom: 10%;
        top: 0;
    }
    #careers .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 2px;
    }
    .hiring_img {
        visibility: hidden;
    }
    .hiring {
        color: #07411B;
        font-size: 1.8em;
        font-weight: bold;
        width: fit-content;
        position: relative;
        left: 9%;
    }
    .description {
        position: relative;
        width: 70%;
        left: 9%;
        color: #5a5a5a;
        font-size: 1.1em;
    }
    .description a {
        color: #095222;
    }
    .career-line1 {
        text-align: center;
    }
    .career-line1 img {
        width: 85%;
    }
    
    .job-listing {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }

    .job-listing .career_container {
        position: relative;
        width: 81%;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 20px;
    }

    .job-listing .job-details-flexbox {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .job-listing h4 {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.1em;
        letter-spacing: 1px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .job-listing h2 {
        grid-column: 1 / 2;
        color: #12A44F;
        font-size: 2em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 1%;
    }
    .job-listing p {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1em;
        margin-top: 0;
        width: 90%;
    }
    .job-listing button {
        grid-column: 2 / 3;
        grid-row: 1 / span 3;
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 15px 10px;
        font-size: 1em;
        border-radius: 50px;
        align-self: center;
        justify-self: end;
    }
    .job-listing button:hover {
        background-color: #07411B;
        transition: background-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    
    .job-listing:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background-color: #5a5a5a;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1em;
        color: #5a5a5a;
    }
    .icon {
        width: 30px;
        max-width: 100%;
        max-height: auto;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding-top: 20px;
        padding-bottom: 35px;
        text-align: center;
    }
    #footer h3 {
        font-size: 0.6em;
    }
    #footer p {
        font-size: 0.5em;
    }
    #footer button {
        position: relative;
        z-index: 3;
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 12px 20px;
        background-color: white;
        color: #12A44F;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.5em;
    }
    #footer a {
        text-decoration: none;
    }
}
@media screen and (max-width: 320px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
        font-family: 'Figtree';
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #careers {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 0;
        margin-bottom: 10%;
        top: 0;
    }
    #careers .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 2px;
    }
    .hiring_img {
        visibility: hidden;
    }
    .hiring {
        color: #07411B;
        font-size: 1.8em;
        font-weight: bold;
        width: fit-content;
        position: relative;
        left: 9%;
    }
    .description {
        position: relative;
        width: 70%;
        left: 9%;
        color: #5a5a5a;
        font-size: 1.1em;
    }
    .description a {
        color: #095222;
    }
    .career-line1 {
        text-align: center;
    }
    .career-line1 img {
        width: 85%;
    }
    
    .job-listing {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 100%;
    }

    .job-listing .career_container {
        position: relative;
        width: 81%;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 20px;
    }

    .job-listing .job-details-flexbox {
        grid-column: 1 / 2;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .job-listing h4 {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 1.1em;
        letter-spacing: 1px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .job-listing h2 {
        grid-column: 1 / 2;
        color: #12A44F;
        font-size: 1.5em;
        letter-spacing: 1px;
        margin-top: 1%;
        margin-bottom: 1%;
    }

    .job-listing p {
        grid-column: 1 / 2;
        color: #5a5a5a;
        font-size: 0.8em;
        margin-top: 0;
        width: 90%;
    }
    .job-listing button {
        grid-column: 2 / 3;
        grid-row: 1 / span 3;
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 15px 10px;
        font-size: 1em;
        border-radius: 50px;
        align-self: center;
        justify-self: end;
    }
    .job-listing button:hover {
        background-color: #07411B;
        transition: background-color 0.2s, color 0.2s;
        cursor: pointer;
    }
    
    .job-listing:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 2px;
        background-color: #5a5a5a;
    }
    
    .detail-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.8em;
        color: #5a5a5a;
    }
    .icon {
        width: 20px;
        max-width: 100%;
        max-height: auto;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding-top: 20px;
        padding-bottom: 30px;
        text-align: center;
    }
    #footer h3 {
        font-size: 0.6em;
    }
    #footer p {
        font-size: 0.5em;
    }
    #footer button {
        position: relative;
        z-index: 3;
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 12px 20px;
        background-color: white;
        color: #12A44F;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.7em;
    }
    #footer a {
        text-decoration: none;
    }
}