.supportHeader {
    text-align: center;
    margin: 20px 0 30px;
    padding: 0 20px;
}

.supportHeader h1 {
    font-size: 2.6rem;
    color: #fefadf;
    /* 383035 */
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.supportHeader p {
    font-size: 1.1rem;
    color: #fefadf;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.supportOptions {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.supportRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

.supportImg img {
    width: 100%;
    max-width: 800px;
}

.supportTxt h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fefadf;
    text-align: center;
}

.supportTxt p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fefadf;
    margin-bottom: 20px;
}

.supportBtn {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    font-size: 1rem;
    background: transparent;
    color: #383035;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #fefadf;
    transition: transform 0.3s ease;
}

.supportBtn::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dashed #383035;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.supportBtn:hover {
    transform: scale(1.1);
}

.supportBtn:hover::after {
    transform: scale(0.9);
}

.supportDivider {
    width: 90%;
    max-width: 900px;
    margin: 20px auto;
    border-bottom: 2px dashed #fefadf;
}

.jobMeta {
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
    border: 2px solid #fefadf;
    padding: 10px;
}

.supportTxt h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #fefadf;
    text-align: left;
}

.jobList {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.jobList li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.appForm {
    margin-top: 0;
    padding: 40px 0;
    display: none;
}

.appCont {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 10px;
    background: #fefadf;
    color: #383035;
}

.appCont h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    text-align: center;
}

.appCont p {
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.appCont label {
    display: block;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.4;
}

.appCont input[type="text"],
.appCont input[type="password"],
.appCont textarea {
    width: 100%;
    margin-top: 6px;
    padding: 10px;
    border: 2px solid #383035;
    font-size: 1rem;
    background-color: #fefadf;
    color: #383035;
}

.appCont textarea {
    height: 140px;
    resize: vertical;
}

.appCont label input[type="checkbox"] {
    display: none;
}

.toggleSlider {
    width: 40px;
    height: 22px;
    background: #383035;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
    cursor: pointer;
    border: 2px solid #383035;
}

.toggleSlider::after {
    content: "";
    width: 18px;
    height: 18px;
    background: #fefadf;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 2px;
    transition: 0.2s ease;
}

#jobToggle:checked + .toggleSlider {
    background: #fefadf;
}

#jobToggle:checked + .toggleSlider::after {
    background: #383035;
    transform: translateX(18px);
}

.appSubmit {
    display: block;
    margin: 20px auto 0;
    padding: 12px 24px;
    font-size: 1rem;
    background: transparent;
    border: 2px solid #383035;
    cursor: pointer;
    transition: 0.2s ease;
}

.appSubmit:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .supportRow {
        flex-direction: column;
        text-align: center;
    }

    .supportImg {
        order: -1;
    }

    .supportTxt {
        order: 0;
    }

    .supportImg img {
        max-width: 100%;
    }
}