/* Vacancy Page Stylesheet */

/* Header Section */
.vacancy-header {
    position: relative;
    width: 100%;
    height: 161px;
    background-color: #f8eee6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.vacancy-header-pattern {
    width: 100%;
    height: 22px;
    background-image: url('../assets/temp/element.svg');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    border-top: 2px solid #e65306;
    border-bottom: 2px solid #e65306;
    box-sizing: border-box;
}

.vacancy-header-pattern-top {
    /* Uses default SVG orientation */
}

.vacancy-header-pattern-bottom {
    /* Flips the pattern vertically */
    transform: scaleY(-1);
}

.vacancy-header-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vacancy-header-title {
    font-family: 'Stolzl', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #00333b;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    letter-spacing: 0.05em;
}

/* Breadcrumbs Section */
.vacancy-breadcrumbs {
    width: 100%;
    background-color: #ffffff;
    padding: 38px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.vacancy-breadcrumbs .container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.vacancy-breadcrumbs a {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.vacancy-breadcrumbs a:hover {
    color: #00333b;
}

.vacancy-breadcrumbs .separator {
    color: #bfbfbf;
    padding: 0 4px;
}

.vacancy-breadcrumbs .current {
    color: #e65306;
}


/* Section 1 Content (Alternating Blocks) */
.vacancy-sec1 {
    width: 100%;
    padding: 0 0 100px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.vacancy-sec1-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    margin-bottom: 120px;
    align-items: center;
}

.vacancy-sec1-block:first-child {
    align-items: flex-start;
}

.vacancy-sec1-block:last-child {
    margin-bottom: 0;
    align-items: flex-end;
}

.vacancy-sec1-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vacancy-sec1-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.vacancy-sec1-title .title-line1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #00333b;
    text-transform: uppercase;
    margin: 0;
}

.vacancy-sec1-title .title-line2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.vacancy-sec1-block:last-child .vacancy-sec1-title .title-line2 {
    margin-left: 40px;
}

.vacancy-sec1-title .badge {
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #e65306;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vacancy-sec1-title .text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #00333b;
    text-transform: uppercase;
}

.vacancy-sec1-desc {
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #00333b;
    text-transform: uppercase;
}

.vacancy-sec1-desc p {
    margin: 0 0 15px 0;
    line-height: 120%;
}

.vacancy-sec1-desc p:last-child {
    margin-bottom: 0;
}

.vacancy-sec1-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 198px;
    height: 52px;
    background-color: #e65306;
    border: 2px solid #e65306;
    color: #ffffff;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.vacancy-sec1-btn:hover {
    background-color: transparent;
    color: #e65306;
}

.vacancy-sec1-media {
    width: 100%;
    overflow: hidden;
}

.vacancy-sec1-block-1 .vacancy-sec1-media {
    height: 520px;
}

.vacancy-sec1-block-2 .vacancy-sec1-media {
    height: 560px;
}

.vacancy-sec1-block:last-child .vacancy-sec1-media {
    margin-top: -180px;
}

.vacancy-sec1-block:first-child .vacancy-sec1-media {
    margin-bottom: -120px;
}

.vacancy-sec1-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section 2 Content (Advantages) */
.vacancy-sec2 {
    width: 100%;
    padding: 0px 0 80px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.vacancy-sec2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: flex-start;
}

.vacancy-sec2-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vacancy-sec2-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.vacancy-sec2-title .title-line1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #00333b;
    text-transform: uppercase;
    margin: 0;
}

.vacancy-sec2-title .title-line2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.vacancy-sec2-title .badge {
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #e65306;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vacancy-sec2-title .text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    color: #00333b;
    text-transform: uppercase;
}

.vacancy-sec2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.vacancy-sec2-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #00333b;
    text-transform: uppercase;
}

.vacancy-sec2-list li:last-child {
    margin-bottom: 0;
}

.vacancy-sec2-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #00333B;
    border-radius: 50%;
}

.vacancy-sec2-media {
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.vacancy-sec2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsiveness (max-width: 768px) */
@media (max-width: 768px) {
    .vacancy-header {
        height: 93px;
    }

    .vacancy-header-pattern {
        height: 8px;
        border-top-width: 1px;
        border-bottom-width: 1px;
    }

    .vacancy-header-title {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    .vacancy-breadcrumbs .container {
        gap: 2px;
    }

    .vacancy-breadcrumbs {
        padding: 24px 0 12px 0;
    }

    /* Section 1 Mobile */
    .vacancy-sec1 {
        padding: 0 0 60px 0;
    }

    .vacancy-sec1-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .vacancy-sec1-block-1 .vacancy-sec1-content,
    .vacancy-sec1-block-2 .vacancy-sec1-content {
        padding-top: 0;
    }

    .vacancy-sec1-block-2 {
        margin-top: 0;
    }

    .vacancy-sec1-block:last-child {
        margin-bottom: 0;
    }

    .vacancy-sec1-media {
        grid-row: 1;
        margin: 0 auto;
    }

    .vacancy-sec1-block-1 .vacancy-sec1-media,
    .vacancy-sec1-block-2 .vacancy-sec1-media {
        height: 390px;
    }

    .vacancy-sec1-content {
        grid-row: 2;
        align-items: stretch;
    }

    .vacancy-sec1-title {
        margin-bottom: 24px;
    }

    .vacancy-sec1-title .title-line1 {
        font-size: 30px;
    }

    .vacancy-sec1-title .title-line2 {
        margin-left: 40px;
        gap: 20px;
        margin-top: 0px;
    }

    .vacancy-sec1-block:last-child .vacancy-sec1-title .title-line2 {
        margin-left: 8px;
        gap: 10px;
    }

    .vacancy-sec1-title .badge {
        font-size: 8px;
    }

    .vacancy-sec1-title .text {
        font-size: 30px;
    }

    .vacancy-sec1-desc {
        font-size: 12px;
    }

    .vacancy-sec1-btn {
        width: 100%;
        margin-top: 32px;
    }

    .vacancy-sec1-block:last-child .vacancy-sec1-media {
        margin-top: 0;
    }

    .vacancy-sec1-block:first-child .vacancy-sec1-media {
        margin-bottom: 0;
    }

    /* Section 2 Mobile Styles */
    .vacancy-sec2 {
        padding: 0px 0 50px 0;
    }

    .vacancy-sec2-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vacancy-sec2-media {
        grid-row: 1;
        height: 390px;
        margin: 0 auto;
    }

    .vacancy-sec2-content {
        grid-row: 2;
        align-items: stretch;
    }

    .vacancy-sec2-title {
        margin-bottom: 24px;
    }

    .vacancy-sec2-title .title-line1 {
        font-size: 30px;
    }

    .vacancy-sec2-title .title-line2 {
        margin-left: 20px;
        gap: 20px;
        margin-top: 0px;
    }

    .vacancy-sec2-title .badge {
        font-size: 8px;
    }

    .vacancy-sec2-title .text {
        font-size: 30px;
    }

    .vacancy-sec2-list li {
        padding-left: 18px;
        margin-bottom: 8px;
        font-size: 12px;
    }

    .vacancy-sec2-list li::before {
        top: 5px;
        width: 6px;
        height: 6px;
    }
}

/* Section 3 Footer Block */
.vacancy-sec3 {
    width: 100%;
    padding: 20px 0 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    box-sizing: border-box;
}

.vacancy-sec3 .block-header-styled {
    max-width: 460px;
    margin: 0 auto;
    margin-top: -10em;
}

.vacancy-sec3 .styled-top-title,
.vacancy-sec3 .styled-bottom-title span:nth-child(2) {
    font-size: 48px;
}

.vacancy-sec3 .styled-bottom-title span:nth-child(1) {
    padding: 0 20px;
}

.vacancy-sec3-content {
    max-width: 460px;
    margin: 0px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vacancy-sec3-desc {
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #00333b;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.vacancy-sec3-desc p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.vacancy-sec3-btns {
    display: flex;
    gap: 16px;
    width: 100%;
}

.vacancy-sec3-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 52px;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.vacancy-sec3-btn-primary {
    background-color: #e65306;
    border: 2px solid #e65306;
    color: #ffffff;
}

.vacancy-sec3-btn-primary:hover {
    background-color: transparent;
    color: #e65306;
}

.vacancy-sec3-btn-outline {
    background-color: transparent;
    border: 2px solid #e65306;
    color: #00333b;
}

.vacancy-sec3-btn-outline:hover {
    background-color: #e65306;
    color: #ffffff;
}



/* Activities Carousel */
.activities-carousel-btns {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 24px;
    width: 100%;
}

.activities-carousel-btns svg {
    cursor: pointer;
}

.activities-carousel {
    max-width: 100%;
    margin-bottom: 0px;
}

.activities-carousel .flickity-viewport {
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.activity-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
    box-sizing: border-box;
}

.activity-media {
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 20px;
}

.activity-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.activity-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

.activity-title .title-line1 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 120%;
    color: #00333b;
    text-transform: uppercase;
    margin: 0;
    margin-left: var(--title-line1-indent-desktop, 0px);
    text-align: left;
}

.activity-title .title-line2 {
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 120%;
    color: #00333b;
    text-transform: uppercase;
    margin: 0;
    margin-left: var(--title-line2-indent-desktop, 80px);
    text-align: left;
}

.activity-desc {
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #00333b;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.activity-desc p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .vacancy-sec3 .styled-top-title,
    .vacancy-sec3 .styled-bottom-title span:nth-child(2) {
        font-size: 30px;
    }

    .vacancy-sec3 .styled-bottom-title span:nth-child(1) {
        padding: 0 10px;
    }

    .vacancy-sec3 .sunrise-block svg {
        margin-top: -6em;
    }

    .vacancy-sec3 {
        padding: 10px 0 60px 0;
    }

    .vacancy-sec3 .block-header-styled {
        margin-top: -9.5em;
    }

    .vacancy-sec3-content {
        display: none !important;
    }

    /* Mobile activities carousel */
    .activities-carousel-btns {
        gap: 10px;
        margin-bottom: 16px;
        justify-content: flex-end;
        padding-right: 0;
        padding-top: 15px;
    }

    .activities-carousel-btns svg {
        width: 47px;
        height: 14px;
        object-fit: contain;
    }

    .activities-carousel {
        padding-left: 0;
        margin-bottom: 0px;
    }

    .activities-carousel .flickity-viewport {
        min-height: 290px;
        overflow: hidden;
    }

    .activity-item {
        width: 50%;
        margin-right: 16px;
    }

    .activity-media {
        width: 100%;
        height: 189px;
        object-fit: cover;
        margin-bottom: 8px;
    }

    .activity-title {
        margin-bottom: 8px;
        align-items: flex-start;
    }

    .activity-title .title-line1 {
        font-size: 16px;
        margin-left: var(--title-line1-indent-mobile, 0px);
    }

    .activity-title .title-line2 {
        font-size: 16px;
        margin-left: var(--title-line2-indent-mobile, 40px);
    }

    .activity-desc {
        font-size: 8px;
        text-align: center;
        width: 100%;
        max-width: 158px;
    }
}


.vacancy-list {
    padding-bottom: 60px;
}

.radio-image-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.radio-image-element {
    display: flex;
    flex-direction: column;

    row-gap: 16px;
    padding: 24px;

    position: relative;
    padding-bottom: 50px;
    background: #F8EEE6;

    cursor: pointer;
}

.radio-image-element img {
    width: 100%;
    height: 100%;
    max-height: 320px;

    object-fit: cover;

    cursor: pointer;
}

.r-i-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 120%;

    text-align: left;
    text-transform: uppercase;

    padding-top: 10px;
    color: #00333B;
}

.r-i-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 110%;

    text-align: left;
}

.r-i-price {
    font-size: 28px;
    font-weight: 500;
    line-height: 100%;

    color: #D5BA8D;
}

.radio-image-element input {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.r-i-tooltip {
    font-size: 14px;
    font-weight: 400;

    color: #00333B;
    text-align: left;

    display: flex;
    gap: 12px;
}

.tooltip-ico {
    display: flex;
    width: 19px;
    height: 19px;
    padding: 5px 4px 4px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 9.5px;
    background: #E65306;
    color: #fff;
}


.radio-image-element input[type="radio"],
.radio-image-element input[type="checkbox"],
.radio-text-element input[type="radio"],
.cf7-form-group-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E65306;
    border-radius: 100px;
    background: #fff;

    cursor: pointer;
    width: 24px;
    height: 24px;
    padding: 0;
}

.radio-image-element input[type="radio"]::before,
.radio-image-element input[type="checkbox"]::before,
.radio-text-element input[type="radio"]::before,
.cf7-form-group-radio input[type="radio"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    background-color: #E65306;
    border-radius: 100px;
}


.radio-image-element input[type="radio"]:checked::before,
.radio-image-element input[type="checkbox"]:checked::before,
.radio-text-element input[type="radio"]:checked::before,
.cf7-form-group-radio input[type="radio"]:checked::before {
    transform: scale(1);
}

.t-c-title {
    color: #fff;
    font-family: 'Stolzl';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.t-c-desc {
    color: #fff;
    font-family: 'Stolzl';
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tooltip-content {
    display: none;
}

.t-c-tooltips-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.t-c-tooltip-item {
    padding-top: 10px;
    display: flex;
    align-items: center;

    gap: 5px;
}

.t-c-icon {
    background: #00333B;
    padding: 3px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-c-icon svg,
.t-c-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.t-c-icon i {
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    font-style: normal;
}

.t-c-icon-name {
    color: #fff;
    font-family: 'Stolzl';
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tippy-content {
    padding: 24px;

    display: flex;
    flex-direction: column;

    row-gap: 8px;

    border-radius: 0;
    background: #E65306;
}

.tippy-box[data-placement^='top']>.tippy-arrow::before {
    border-top-color: #fff;
}

.vacancy-list .block-header-styled {
    margin-top: 0em;
}

.vacancy-list .styled-top-title,
.vacancy-list .styled-bottom-title span:nth-child(2) {
    font-size: 48px;
}

.vacancy-list .styled-bottom-title span:nth-child(1) {
    padding: 0 15px;
}

@media (max-width: 767px) {

    .vacancy-list .styled-top-title,
    .vacancy-list .styled-bottom-title span:nth-child(2) {
        font-size: 30px;
    }

    .vacancy-list .block-header-styled {
        padding-top: 0;
        padding-bottom: 40px;
        margin-top: 0;
    }

    .radio-image-group {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .radio-image-element {
        padding: 10px;

        row-gap: 6px;

        padding-bottom: 25px;
    }

    .radio-image-element img {
        max-height: 130px;
    }

    .r-i-title {
        font-size: 10px;
        padding-top: 0;
    }

    .r-i-desc {
        font-size: 8px;
    }

    .r-i-tooltip {
        gap: 8px;
        font-size: 8px;
    }

    .tooltip-ico {
        display: flex;
        width: 12px;
        height: 12px;
        padding: 2.007px 1.605px 1.605px 1.605px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4.014px;
    }


    .t-c-title {
        font-size: 9px;
    }

    .t-c-desc {
        font-size: 8px;
    }

    .t-c-icon-name {
        font-size: 7px;
        line-height: 100%;
    }

    .tippy-content {
        padding: 12px 16px;
    }

    .t-c-tooltip-item {
        padding-top: 5px;
    }

    .t-c-tooltips-list {
        grid-template-columns: 1fr;
    }

    .r-i-price {
        font-size: 12px;
    }

    .radio-image-element input {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }

    .radio-image-element input[type="radio"],
    .radio-image-element input[type="checkbox"],
    .radio-text-element input[type="radio"],
    .cf7-form-group-radio input[type="radio"] {
        width: 10px;
        height: 10px;

        border-width: 0.602px;
    }

    .radio-image-element input[type="radio"]::before,
    .radio-image-element input[type="checkbox"]::before,
    .radio-text-element input[type="radio"]::before,
    .cf7-form-group-radio input[type="radio"]::before {
        width: 4px;
        height: 4px;
    }
}

/* Vacancy Form Section */
.vacancy-form-section {
    width: 100%;
    padding: 0px 0 60px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.vacancy-form-section .block-header-styled {
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.vacancy-form-section .styled-top-title,
.vacancy-form-section .styled-bottom-title span:nth-child(2) {
    font-size: 48px;
}

.vacancy-form-section .styled-bottom-title span:nth-child(1) {
    padding: 0 15px;
}

.vacancy-form-container {
    max-width: 930px;
    margin: 0 auto;
    background-color: #f8eee6;
    border: 2px solid #e65306;
    padding: 40px 80px;
    box-sizing: border-box;
}

.vacancy-form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.vacancy-form-group {
    flex: 1;
}

.vacancy-form-group-full {
    width: 100%;
    margin-bottom: 32px;
}

.vacancy-form-group input[type="text"],
.vacancy-form-group input[type="email"],
.vacancy-form-group input[type="tel"],
.vacancy-form-group textarea {
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 24px;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #00333b;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.vacancy-form-group input[type="text"]:focus,
.vacancy-form-group input[type="email"]:focus,
.vacancy-form-group input[type="tel"]:focus,
.vacancy-form-group textarea:focus {
    border-color: #e65306;
    outline: none;
}

.vacancy-form-group input::placeholder,
.vacancy-form-group textarea::placeholder {
    color: #bfbfbf;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.vacancy-form-group textarea {
    height: 200px;
    resize: none;
}

.vacancy-form-submit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.vacancy-form-submit-wrapper input[type="submit"] {
    background-color: #e65306;
    border: 2px solid #e65306;
    color: #ffffff;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 16px 24px;
    cursor: pointer;
    min-width: 198px;
    transition: all 0.3s ease-in-out;
}

.vacancy-form-submit-wrapper input[type="submit"]:hover {
    background-color: transparent;
    color: #e65306;
}

@media (max-width: 768px) {
    .vacancy-form-section {
        padding: 0px 0 60px 0;
    }

    .vacancy-form-section .block-header-styled {
        margin-bottom: 32px;
        padding-top: 0;
    }

    .vacancy-form-section .styled-top-title,
    .vacancy-form-section .styled-bottom-title span:nth-child(2) {
        font-size: 30px;
    }

    .vacancy-form-section .styled-bottom-title span:nth-child(1) {
        padding: 0 10px;
    }

    .vacancy-form-container {
        padding: 16px;
        margin: 0;
    }

    .vacancy-form-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .vacancy-form-group-full {
        margin-bottom: 16px;
    }

    .vacancy-form-group input[type="text"],
    .vacancy-form-group input[type="email"],
    .vacancy-form-group input[type="tel"],
    .vacancy-form-group textarea {
        font-size: 12px;
        padding: 12px 16px;
    }

    .vacancy-form-group input::placeholder,
    .vacancy-form-group textarea::placeholder {
        font-size: 12px;
    }

    .vacancy-form-group textarea {
        height: 150px;
    }

    .vacancy-form-submit-wrapper input[type="submit"] {
        width: 100%;
        min-width: unset;
    }
}

/* Vacancy Section 4 (Footer Call to Action) */
.vacancy-sec4 {
    width: 100%;
    padding: 0 0 120px 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.vacancy-sec4 .container {
    max-width: 500px;
    margin: 0 auto;
}

.vacancy-sec4 .block-header-styled {
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.vacancy-sec4 .styled-top-title,
.vacancy-sec4 .styled-bottom-title span:nth-child(2) {
    font-size: 48px;
}

.vacancy-sec4 .styled-bottom-title span:nth-child(1) {
    padding: 0 15px;
}

.vacancy-sec4-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.vacancy-sec4-desc {
    font-family: 'Stolzl', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #00333b;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.vacancy-sec4-desc p {
    margin: 0;
    line-height: 1.5;
}

.vacancy-sec4-desc span {
    color: #e65306;
    text-decoration: none;
}

.vacancy-sec4-btns {
    display: flex;
    gap: 16px;
    width: 100%;
}

.vacancy-sec4-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 52px;
    font-family: 'Stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.vacancy-sec4-btn-primary {
    background-color: #e65306;
    border: 2px solid #e65306;
    color: #ffffff;
}

.vacancy-sec4-btn-primary:hover {
    background-color: transparent;
    color: #e65306;
}

.vacancy-sec4-btn-outline {
    background-color: transparent;
    border: 2px solid #e65306;
    color: #00333b;
}

.vacancy-sec4-btn-outline:hover {
    background-color: #e65306;
    color: #ffffff;
}

@media (max-width: 768px) {
    .vacancy-sec4 {
        padding: 0 0 60px 0;
    }

    .vacancy-sec4 .block-header-styled {
        margin-bottom: 24px;
        padding-top: 0;
    }

    .vacancy-sec4 .styled-top-title,
    .vacancy-sec4 .styled-bottom-title span:nth-child(2) {
        font-size: 30px;
    }

    .vacancy-sec4 .styled-bottom-title span:nth-child(1) {
        padding: 0 10px;
    }

    .vacancy-sec4-content {
        margin-top: 24px;
    }

    .vacancy-sec4-desc {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .vacancy-sec4-btns {
        flex-direction: column;
        gap: 16px;
    }

    .vacancy-sec4-btn {
        width: 100%;
        padding: 16px 24px;
    }
}