.form-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.input-group-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .input-group-row {
        flex-direction: row;
        gap: 24px;
    }
}

.subscribe-btn {
    width: fit-content;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.image-box {
    width: 100%;
    height: 450px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.image-inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.text-box {
    width: 100%;
}

.mb-section {
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .content-section {
        flex-direction: row;
    }
    .image-left .image-box {
        order: 0;
    }
    .image-left .text-box {
        order: 1;
    }
    .image-right .image-box {
        order: 1;
    }
    .image-right .text-box {
        order: 0;
    }
    .text-box,
    .image-box {
        width: 50%;
    }
}

.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.relative-container {
    position: relative;
}

.content-flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.image-half {
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-half {
    width: 100%;
}

.state-image {
    width: 300px;
    height: 380px;
    transform: rotate(-10deg) translateY(-70px);
    position: absolute;
}

@media (min-width: 1024px) {
    .content-flex {
        flex-direction: row;
    }
    .image-half,
    .text-half {
        width: 50%;
    }
}

.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.job-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.job-card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.job-content {
    margin-bottom: 100px;
}

.btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 640px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .job-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.common-border-l {
    border-left: 1px solid #005cab;
}

.common-bar1 {
    width: 60px;
    height: 250px;
    background-color: #002545;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-150px);
}

.common-bar2 {
    width: 60px;
    height: 150px;
    background-color: #002545;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 899px) {
    .common-bar1,
    .common-bar2 {
        display: none !important;
    }
}