.hero-section {
    position: relative;
    min-height: 520px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('../images/menu.png');
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #1f5c3fde;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
    color: #E1D19D;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text {
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    width: 70%;
    line-height: 1.5;
    margin: 0 auto;
    font-family: "Tenor Sans", sans-serif;
}

/* Careers Form Section */
.careers-form-section {
    padding: 90px 20px;
    background: #f1f2f2;
}

.careers-form-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.careers-form-title {
    font-size: 42px;
    color: #1f5c3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.careers-form-text {
    font-size: 18px;
    color: #333;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.careers-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.cf7-careers-form .form-group {
    margin-bottom: 22px;
}

.cf7-careers-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1f5c3f;
    margin-bottom: 8px;
}

.cf7-careers-form input,
.cf7-careers-form select {
    width: 100%;
    height: 30px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background: #fff;
    outline: none;
}

.cf7-careers-form input[type="file"] {
    height: auto;
    padding: 14px;
}

.cf7-careers-form input:focus,
.cf7-careers-form select:focus {
    border-color: #1f5c3f;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.cf7-careers-form input[type="submit"] {
    width: auto;
    min-width: 220px;
    height: 55px;
    background: #1f5c3f;
    color: #E1D19D;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.cf7-careers-form input[type="submit"]:hover {
    background: #163f2d;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 420px;
        padding: 80px 15px;
    }

    .hero-content {
        margin-top: 50px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 18px;
        width: 90%;
    }

    .careers-form-section {
        padding: 60px 15px;
    }

    .careers-form-title {
        font-size: 30px;
    }

    .careers-form-text {
        font-size: 16px;
    }

    .careers-form-box {
        padding: 25px;
        border-radius: 15px;
    }

    .cf7-careers-form input,
    .cf7-careers-form select {
        font-size: 15px;
    }

    .cf7-careers-form input[type="submit"] {
        width: 100%;
    }
}


.cf7-careers-form select,
.cf7-careers-form .wpcf7-select {
    display: block !important;
    width: 100% !important;
    height: 52px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 16px;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.cf7-careers-form .form-group {
    margin-bottom: 22px;
}