﻿```css
/* Hero Banner */
.career-banner {
    position: relative;
    background: url('../images/career-banner.jpg') center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

    .banner-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 18px;
    }

/* Intro Section */

.career-intro {
    padding: 90px 0 50px;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

    .section-title span {
        color: #c89b3c;
        font-weight: 600;
        text-transform: uppercase;
    }

    .section-title h2 {
        font-size: 42px;
        margin: 15px 0;
        font-weight: 700;
    }

    .section-title p {
        color: #666;
        line-height: 1.8;
    }

/* Benefits */

.benefits-section {
    padding: 20px 0 80px;
}

.benefit-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .benefit-box:hover {
        transform: translateY(-8px);
    }

    .benefit-box i {
        font-size: 50px;
        color: #c89b3c;
        margin-bottom: 20px;
    }

    .benefit-box h4 {
        margin-bottom: 15px;
        font-weight: 600;
    }

/* Form Section */

.application-section {
    padding-bottom: 100px;
}

.career-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .career-form h3 {
        text-align: center;
        margin-bottom: 35px;
        font-size: 32px;
        font-weight: 700;
    }

.form-control {
    height: 55px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
}

.btn-send {
    background: #c89b3c;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
}

    .btn-send:hover {
        background: #a87f28;
        color: #fff;
    }

/* Responsive */

@media(max-width:768px) {

    .career-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .career-form {
        padding: 30px 20px;
    }
}

```
