
body{
    margin:0;
    background:#ffffff;
    color:#23235a;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

.container{width:min(1180px,92%);margin:0 auto;}

.top-header{
    background:#ffffff;
    text-align:center;
    padding:32px 20px 18px;
}

.top-header img{
    display:block;
    margin:0 auto;
    width:420px;      /* TOP LOGO SIZE - adjust here */
    max-width:95%;
    height:auto;
}

.navbar{
    background:#ffffff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #d8d8d8;
}

.nav-inner{
    display:flex;
    justify-content:center;
    gap:42px;
    padding:18px 10px;
    flex-wrap:wrap;
}

.nav-inner a{
    text-decoration:none;
    color:#23235a;
    font-weight:bold;
    text-transform:uppercase;
    font-size:15px;
    letter-spacing:.5px;
}

.nav-inner a.active{
    border-bottom:4px solid #d61f2c;
    padding-bottom:10px;
}

.hero{
    height:360px;
    background:
        linear-gradient(rgba(255,255,255,.08), rgba(255,255,255,.08)),
        url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
}

.content-section{
    background:#ffffff;
    padding:52px 0 65px;
}

.page-title{
    font-size:52px;
    margin:0 0 16px;
    color:#23235a;
    font-weight:300;
    line-height:1.15;
}

.job-page-heading{
    margin-bottom:26px;
}

.job-page-heading .page-title{
    margin-bottom:4px;
}

.job-role-title{
    font-size:28px;
    margin:0 0 14px;
    color:#23235a;
    font-weight:700;
    line-height:1.2;
}

.job-page-heading p{
    margin:0 0 18px;
}

.red-line{
    width:62px;
    height:5px;
    background:#d61f2c;
    margin:22px 0 36px;
}

.intro-copy{
    font-size:26px;
    line-height:1.45;
    color:#23235a;
    font-style:italic;
    max-width:1080px;
    margin-bottom:45px;
}

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top:36px;
}

.jobs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
    gap:28px;
    margin-top:55px;
}

.job-card{
    background:#ffffff;
    padding:30px;
    border-radius:4px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    border:1px solid #eeeeee;
}

.job-card h2{
    margin-top:0;
    color:#23235a;
    font-size:32px;
    font-weight:400;
}

.meta{
    margin:20px 0;
    color:#444;
}

.meta div,
.meta span{
    display:block;
    margin-bottom:10px;
}

.btn{
    display:inline-block;
    background:#23235a;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:2px;
    font-weight:bold;
    border:0;
    cursor:pointer;
}

.btn:hover{background:#171742;}

.job-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:34px;
    margin-top:30px;
}

.card{
    background:#fff;
    padding:34px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    border:1px solid #eeeeee;
}

.card h2{
    color:#23235a;
    font-size:34px;
    font-weight:400;
}

.sidebar .card{
    position:sticky;
    top:20px;
}

.notice{
    padding:18px;
    margin:22px 0 30px;
    border-radius:4px;
}

.notice.success{
    background:#e7f6de;
    border:1px solid #79a014;
}

.notice.error{
    background:#fde2e2;
    border:1px solid #cc3333;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    align-items:start;
}

.form-row{
    margin-bottom:14px;
    display:flex;
    flex-direction:column;
}

.form-row label{
    min-height:48px;
}

.full{grid-column:1/-1;}

.full label,
.checkbox-line{
    min-height:auto !important;
}

label{
    display:block;
    margin-bottom:6px;
    font-weight:bold;
    color:#23235a;
}

input, textarea, select{
    width:100%;
    padding:13px;
    border:1px solid #cfcfcf;
    font:inherit;
    background:#fff;
}

textarea{min-height:130px;}

.small{
    font-size:14px;
    color:#666;
}

.form-section-title{
    grid-column:1/-1;
    font-size:24px;
    margin-top:18px;
    padding-top:20px;
    border-top:1px solid #ddd;
    color:#23235a;
}

.checkbox-line{
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.checkbox-line input{
    width:auto;
    margin-top:6px;
}

/* Drag and drop CV upload */
.upload-zone{
    position:relative;
    border:2px dashed #b8bad6;
    background:#fafafe;
    border-radius:8px;
    padding:34px 24px;
    text-align:center;
    transition:all .2s ease;
    cursor:pointer;
}

.upload-zone:hover,
.upload-zone.is-dragover{
    border-color:#23235a;
    background:#f1f2ff;
}

.upload-zone input[type="file"]{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
    width:100%;
    height:100%;
}

.upload-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#23235a;
    color:#fff;
    display:grid;
    place-items:center;
    margin:0 auto 14px;
    font-size:26px;
    font-weight:bold;
}

.upload-title{
    font-size:20px;
    font-weight:bold;
    color:#23235a;
    margin-bottom:6px;
}

.upload-text{
    margin:0;
    color:#444;
}

.upload-file-name{
    margin-top:14px;
    font-weight:bold;
    color:#23235a;
}

.upload-help{
    margin-top:8px;
    color:#666;
    font-size:14px;
}

.footer{
    background:#2b2c6d;
    margin-top:60px;
    color:#fff;
}

.footer-inner{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:18px;
    padding:34px 0;
    text-align:center;
}

.footer img{
    display:block;
    margin:0 auto;
    width:230px;      /* FOOTER LOGO SIZE - adjust here */
    max-width:100%;
    height:auto;
}

.footer-copy{
    text-align:center;
    font-size:15px;
}

.breadcrumb{
    margin-top:0;
    margin-bottom:20px;
}

.breadcrumb a{
    color:#23235a;
    text-decoration:none;
}

@media(max-width:900px){
    .two-col,
    .job-layout,
    .form-grid{
        grid-template-columns:1fr;
    }

    .page-title{
        font-size:42px;
    }

    .job-role-title{
        font-size:26px;
    }

    .intro-copy{
        font-size:22px;
    }

    .hero{
        height:260px;
    }

    .nav-inner{
        gap:18px;
    }

    .form-row label{
        min-height:auto;
    }

    .upload-zone{
        padding:28px 18px;
    }
}
