*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f7f6;
    color:#1b1b1b;
    line-height:1.6;
}

a{
    text-decoration:none;
}

.careers-header{
    background:linear-gradient(135deg,#0f8f4d,#0a6e3b);
    color:white;
    padding:80px 20px 60px;
}

.back-btn{
    display:inline-block;
    background:white;
    color:#0f8f4d;
    padding:12px 20px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:40px;
    transition:.2s;
}

.back-btn:hover{
    background:#f1f1f1;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.eyebrow{
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:2px;
    opacity:.9;
}

.hero-content h1{
    font-size:3rem;
    margin:20px 0;
}

.hero-content p{
    max-width:800px;
    font-size:1.1rem;
}

main{
    width:min(1100px,95%);
    margin:50px auto;
}

.openings-section h2,
.application-section h2{
    font-size:2rem;
    color:#0f8f4d;
    margin-bottom:30px;
}

.job-card{
    background:white;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:6px solid #0f8f4d;
}

.job-card h3{
    margin-bottom:10px;
    color:#0f8f4d;
}

.application-section{
    margin-top:70px;
}

.notice{
    background:#e8f7ee;
    color:#0f8f4d;
    padding:18px;
    border-radius:15px;
    margin-bottom:30px;
    font-weight:600;
}

#careerForm{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    font-weight:700;
    margin-bottom:10px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:1rem;
    background:white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#0f8f4d;
}

.field-note{
    display:block;
    margin-top:8px;
    color:#666;
    font-size:.9rem;
}

.form-group input[type="file"]{
    cursor:pointer;
}

.form-group input[type="file"]::file-selector-button{
    background:#0f8f4d;
    color:white;
    border:none;
    padding:10px 14px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    margin-right:12px;
    transition:.2s;
}

.form-group input[type="file"]::file-selector-button:hover{
    background:#0b6e3b;
}

.submit-btn{
    width:100%;
    background:#0f8f4d;
    color:white;
    border:none;
    padding:18px;
    border-radius:18px;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.submit-btn:hover{
    background:#0b6e3b;
}

@media(max-width:768px){

.hero-content h1{
    font-size:2.2rem;
}

#careerForm{
    padding:25px;
}

}
