:root {
  --color-blue: #003366;
  --color-blue-light: #789dc7;
  --color-blue-grey: #203b50;
  --color-orange: #ff6633;
  --dark-color: #203b50;
  --text-color: #fff;
  --hover-color: #33c9ff;
  /* Additional color variables for form styling */
  --color-blue-focus: rgba(0, 51, 102, 0.25);
  --color-orange-light: rgba(255, 102, 51, 0.1);
  --color-disabled: #cccccc;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (max-width: 68.75em) {
    html {
      font-size: 50%; } }

body {
  font-family: "Nunito", sans-serif;
  background-color: #fff;
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6; }

h1 {
  font-size: 2rem; }

h2 {
  font-size: 1.8rem; }

h3 {
  font-size: 1.6rem; }

h4 {
  font-size: 1.4rem; }

#page {
  display: grid;
  width: 100%;
  background-color: #f6f5f5;
  margin: auto;
  min-height: 100vh;
  grid-gap: 0.5rem;
  grid-template-areas: "header header header" "main main main" "footer footer footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: repeat(3, 1fr);
  background-size: 100vw 100vh;
  /* CSS for language switcher */ }
  @media only screen and (max-width: 75em) {
    #page #page {
      margin: 0;
      max-width: 100%; } }
  #page header {
    grid-area: header;
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    box-shadow: 2px 2px 1px lightgrey; }
    @media only screen and (max-width: 56.25em) {
      #page header {
        flex-direction: column-reverse; } }
  #page main {
    grid-area: main;
    font-size: 3rem;
    color: #000;
    width: 90%;
    margin: 0 auto;
    padding: 5px;
    min-height: 0;
    height: auto;
  }
  #page main > * {
    margin-bottom: 1rem;  /* Add consistent spacing between content elements */
  }
  #page main > *:last-child {
    margin-bottom: 0;  /* Remove margin from last element */
  }
  #page footer {
    grid-area: footer;
    background-color: var(--color-blue-light);
    padding: 1rem;
    font-size: 1.5rem;
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: space-evenly;
    width: 90%;
    margin: 0 auto;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: -2px -2px 1px lightgrey; }
  #page footer a {
    color: var(--dark-color);
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
    display: inline-block; }
  #page footer a:hover {
    color: var(--color-orange);
    transform: translateY(-2px); }
  #page footer i {
    font-size: 2.4rem; }
  #page header > nav {
    height: 60px;
    margin-bottom: 5px;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
  #page header > nav a {
    transition: 0.3s ease;
    background: white;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
    padding: 20px 0;
    margin: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.6rem; }
  #page header > nav .link:hover {
    border-top: 4px solid var(--dark-color);
    border-bottom: 4px solid var(--dark-color);
    padding: 6px 0; }
  #page header > nav .link:active {
    background-color: var(--color-orange); }
  #page header > nav .link.active {
    color: var(--color-orange);
    border-top: 4px solid var(--color-orange);
    border-bottom: 4px solid var(--color-orange);
    padding: 6px 0; }
  #page header > nav .home-link {
    display: none; }
  #page header > nav .home-link.active {
    color: var(--color-orange); }
  #page header > nav .logo-link {
    margin-right: auto; }
  #page header > nav svg {
    fill: var(--color-orange); }
  #page .contactdiv {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    align-items: start;
  }
  @media only screen and (max-width: 37.5em) {
    #page .contactdiv {
      display: flex;
      flex-direction: column;
    }
  }
  #page .logo {
    background-color: white;
    display: flex;
    justify-content: center;
    display: none; }
  #page .logo {
    background-color: white;
    display: flex;
    justify-content: center;
    display: none; }
  #page .motto {
    color: var(--dark-color);
    height: 30px;
    width: 100%;
    padding-left: 20px;
    background-color: transparent;
    justify-content: flex-end;
    margin-bottom: 5px; }
  #page .sidebar {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center; }
  #page #sidebar-open {
    display: none; }
  #page .open-sidebar-button, #page .close-sidebar-button {
    display: none; }
  @media (max-width: 600px) {
    #page html {
      font-size: 10px; }
    #page header > nav .link:hover {
      padding: 6px 0; }
    #page .sidebar {
      flex-direction: column;
      align-items: flex-start;
      position: fixed;
      top: 0;
      right: -100%;
      z-index: 10;
      width: 280px;
      background-color: white;
      color: var(--dark-color);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease-out;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      padding: 25px 0;
      height: 100vh;
      overflow-y: auto; }
    #page header > nav a {
      box-sizing: border-box;
      background-color: transparent;
      color: var(--dark-color);
      height: auto;
      width: 100%;
      padding: 15px 25px;
      justify-content: flex-start;
      border: none;
      transition: all 0.2s ease;
      font-size: 1.8rem;
      font-weight: 500;
      text-decoration: none;
      position: relative; }
    #page nav a:hover {
      background-color: rgba(0, 51, 102, 0.05);
      color: var(--dark-color);
      text-decoration: none;
      font-weight: 500;
      padding: 15px 25px; }
    #page nav .logo-link:hover {
      background-color: transparent;
      padding: 20px 30px; }
    #page nav a.active {
      background-color: rgba(255, 102, 51, 0.08);
      color: var(--color-orange);
      font-weight: 500;
      text-decoration: none;
      padding: 15px 25px; }
    #page .open-sidebar-button, #page .close-sidebar-button {
      padding: 12px;
      display: block;
      background-color: white;
      border: 2px solid var(--color-orange);
      border-radius: 8px;
      box-shadow: none;
      transition: all 0.2s ease; }
    #page .open-sidebar-button:hover, #page .close-sidebar-button:hover {
      background-color: var(--color-orange);
      transform: none;
      box-shadow: none;
      border-color: var(--color-orange); }
    #page .open-sidebar-button:hover svg {
      fill: white; }
    #page .close-sidebar-button {
      position: absolute;
      top: 15px;
      right: 15px;
      padding: 8px;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      border: 2px solid var(--color-orange);
      box-shadow: none; }
    #page .close-sidebar-button svg {
      fill: var(--color-blue); }
    #page .close-sidebar-button:hover {
      background-color: var(--color-orange);
      transform: none; }
    #page .close-sidebar-button:hover svg {
      fill: white; }
    #page #sidebar-open:checked ~ .sidebar {
      right: 0; }
    #page #sidebar-open:checked ~ #overlay {
      height: 100%;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9;
      background-color: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(3px); }
    #page .logo {
      background-color: transparent;
      display: flex;
      justify-content: center;
      padding: 20px 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      margin-bottom: 20px; }
    /* Mobile sidebar specific overrides to remove all border effects and jumping */
    #page .sidebar a,
    #page .sidebar .link,
    #page .sidebar .link:hover,
    #page .sidebar .link.active,
    #page .sidebar a:hover,
    #page .sidebar a.active,
    #page .sidebar .home-link,
    #page .sidebar .home-link:hover,
    #page .sidebar .home-link.active,
    #page .sidebar .logo-link,
    #page .sidebar .logo-link:hover {
      border-top: none !important;
      border-bottom: none !important;
      border-left: none !important;
      border-right: none !important;
      padding: 15px 25px !important;
      margin: 0 !important;
      transform: none !important;
      transition: background-color 0.2s ease !important; } }
  #page .langswitch {
    background-color: white;
    margin: 8px 0 0 20px;
    color: var(--dark-color);
    overflow: hidden; }
    @media (max-width: 600px) {
      #page .langswitch {
        background-color: #f8f9fa;
        margin: 20px 25px 0 25px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1); } }
  #page .langswitch:hover .language-picker {
    display: block;
    transition: 0.75s ease-out; }
  #page .langswitch .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: var(--dark-color);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0; }
  #page .langswitch h4 {
    color: var(--color-orange);
    margin-bottom: 10px;
    font-size: 1.6rem; }
    @media (max-width: 600px) {
      #page .langswitch h4 {
        color: var(--color-orange);
        margin-bottom: 12px;
        font-size: 1.6rem;
        font-weight: 600; }
      #page .langswitch select {
        background-color: white;
        color: var(--color-blue);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 1.4rem;
        margin-bottom: 10px;
        font-weight: 500;
        transition: all 0.2s ease; }
      #page .langswitch select:focus {
        border-color: var(--color-orange);
        background-color: white;
        outline: none; }
      #page .langswitch button {
        background-color: var(--color-orange);
        color: white;
        border: none;
        border-radius: 6px;
        padding: 8px 16px;
        font-size: 1.3rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease; }
      #page .langswitch button:hover {
        background-color: var(--color-blue);
        transform: none; } }
  #page .dropbtn {
    background-color: var(--hover-color); }
  #page .language-picker {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1; }
  #page .language-picker option {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left; }
  #page .language-picker a:hover {
    background-color: #ddd; }
  #page .about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem;
    max-width: 140rem;
    margin: 0 auto;
  }
  @media only screen and (max-width: 56.25em) {
    #page .about {
      grid-template-columns: 1fr;
    }
  }
  #page .about-item {
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  #page .about-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-blue);
  }
  #page .about-heading {
    font-size: 2.4rem;
    margin: 0;
    color: var(--color-blue);
  }
  #page .about-icon {
    font-size: 2.8rem;
    color: var(--color-orange);
  }
  #page .about-text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
  }
  #page .language input {
    color: red; }
  #page .checkbox-language {
    background-color: transparent;
    padding: 2rem 0; }
  #page .checkbox-language label {
    color: var(--color-blue);
    font-size: 2rem; }
    #page .checkbox-language label input[type="checkbox"] {
      height: 20px;
      width: 20px;
      background-color: #eee; }
  #page .checkbox-sector {
    background-color: transparent; }
  #page .checkbox-sector label {
    color: var(--color-blue);
    font-size: 2rem; }
    #page .checkbox-sector label input[type="checkbox"] {
      height: 20px;
      width: 20px;
      background-color: #eee; }
  #page .jobsearchdiv {
    display: flex;
    flex-direction: row;
    width: 100%; }
    @media only screen and (max-width: 56.25em) {
      #page .jobsearchdiv {
        flex-direction: column; } }
  #page .jobfilterdiv {
    order: 0;
    flex: 20%;
    /* top | right | bottom | left */
    margin: 70px 10px 10px 0px;
    /* top | right | bottom | left */
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    min-height: fit-content;
    min-width: fit-content;
    flex-direction: column;
    box-shadow: 2px 2px 1px lightgrey; }
    @media only screen and (max-width: 56.25em) {
      #page .jobfilterdiv {
        order: 0;
        display: inline-flex; } }
  #page .jobfilterdiv h3 {
    color: var(--color-blue-grey);
    font-size: 2.5rem;
    font-weight: bold;
    margin-right: 10px; }
  #page .jobfilterdiv label {
    font-size: 1.5rem; }
  #page .joblist {
    order: 1;
    flex: 60%;
    /* top | right | bottom | left */
    margin: 60px 0px 10px 0px;
    /* top | right | bottom | left */
    padding: 10px 10px 10px 10px; }
    @media only screen and (max-width: 56.25em) {
      #page .joblist {
        order: 1; } }
    #page .joblist-item {
      display: flex;
      flex-direction: column;
      background-color: white;
      border-radius: 25px;
      box-shadow: 2px 2px 1px lightgrey;
      border: 1.5px solid white;
      padding: 1px 1% 0 1%;
      margin-bottom: 2%; }
    #page .joblist-item:hover {
      border: 1.5px solid var(--color-orange); }
    /* Removed conflicting joblist-header rules - now handled by newer CSS below */
    #page .joblist-header h4 a {
      color: blue;
      font-size: 3rem;
      text-decoration: none; }
    #page .joblist-subheader {
      display: flex;
      flex-direction: row;
      max-height: 7rem;
      color: var(--color-blue-light); }
    #page .joblist-item-info {
      flex: 80%;
      font-size: 1.2rem; }
    #page .joblist-buttondiv {
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      flex: 20%; }
    #page .joblist-text {
      color: var(--color-blue);
      min-height: 10rem;
      font-size: 1.5rem; }
  #page .jobsidediv {
    order: 2;
    flex: 20%;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/gotthejob.jpg);
    background-size: cover;
    /* top | right | bottom | left */
    margin: 70px 10px 10px 0px;
    /* top | right | bottom | left */
    padding: 10px 10px 10px 10px;
    background-color: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    min-height: fit-content;
    min-width: fit-content;
    flex-direction: column;
    box-shadow: 2px 2px 1px lightgrey; }
    @media only screen and (max-width: 56.25em) {
      #page .jobsidediv {
        order: 2;
        display: inline-flex; } }
  #page .jobdetaildiv {
    display: grid;
    grid-template-columns: 3fr 2fr;  /* Adjusted ratio for better balance */
    gap: 1rem;
    align-items: start;
    min-height: 60vh;  /* Minimum height to ensure proper photo display */
  }
  @media only screen and (max-width: 37.5em) {
    #page .jobdetaildiv {
      display: flex;
      flex-direction: column;
      min-height: auto;
    }
  }
  #page .jobdetail {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 2px 2px 1px lightgrey;
    height: 100%;  /* Fill the container height */
    margin-bottom: 1rem;
  }
  #page .jobdetail-title {
    margin-bottom: 2rem;
  }
  #page .jobdetail-title h1 {
    color: var(--color-blue);
    font-size: 3rem;
    font-weight: 600;
  }
  #page .jobdetail-description {
    margin-bottom: 3rem;
  }
  #page .jobdetail-description h2 {
    color: var(--color-blue);
    font-size: 2.4rem;
    font-weight: 600;
  }
  #page .jobdetail-description p {
    color: var(--dark-color);
    font-size: 1.6rem;
    line-height: 1.6;
    white-space: pre-line;
  }
  #page .jobphoto {
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5),
      rgba(120, 157, 199, 0.5)
    ), url(../img/skyisthelimit.jpg);  /* Restored original image */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 2px 2px 1px lightgrey;
    height: 100%;  /* Fill the container height */
    min-height: 60vh;  /* Ensure minimum height */
    margin-bottom: 1rem;
  }
  @media only screen and (max-width: 37.5em) {
    #page .jobphoto {
      min-height: 300px;  /* Increased height on mobile */
      height: 300px;
    }
  }
  #page .button-apply {
    color: white;
    font-size: 2rem;
    padding-bottom: 3rem; }
  #page .button-more {
    border: none;
    text-decoration: none;
    color: #fff;
    background-color: #003366;
    padding: .5em 2em;
    margin-bottom: 5px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: 200ms ease; }
    @media only screen and (max-width: 37.5em) {
      #page .button-more {
        font-size: 1.7rem;
        width: 16rem;
        padding: .2em 0.5em;
        margin-right: 0.2em; } }
  #page .button-more:hover {
    color: #ff6633; }
  #page .heading-1, #page .heading-2, #page .heading-3, #page .heading-4 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400; }
  #page .heading-2 {
    font-weight: 600; }
  #page .heading-4 {
    font-size: 1.9rem; }
  #page .fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%; }
  #page .bi {
    margin: 5px;
    font-size: 3rem; }
  #page .button-apply {
    background-color: var(--color-blue);
    border: none;
    border-radius: 5px;
    height: 3rem;
    color: #fff;
    width: 12rem;
    padding: 2px;
    text-align: center;
    align-items: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2rem;
    cursor: pointer; }
    @media only screen and (max-width: 37.5em) {
      #page .button-apply {
        font-size: 1.8rem;
        width: 18rem; } }
    #page .button-apply:hover {
      background-color: var(--color-blue-light);
      color: #000;
      box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); }
  #page .form-row {
    background-color: white;
    width: 96%;
    margin-left: 5px; }
  #page .form-row-checkbox {
    background-color: green;
    display: flex;
    flex-direction: column;
    width: 96%;
    margin-left: 5px; }
  #page .form-row label {
    font-size: small; }
  #page .form-group {
    background-color: white;
    width: 100%; }
  #page .h1contact {
    padding-left: 60px;
    padding-top: 10px; }
  #page .contact {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 2px 2px 1px lightgrey;
    height: auto;
    margin-bottom: 1rem;
  }
  #page .emailphoto {
    background-image: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.5),
      rgba(120, 157, 199, 0.5)
    ), url(../img/emailform.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 2px 2px 1px lightgrey;
    height: calc(100% - 1rem);
    margin-bottom: 1rem;
  }
  @media only screen and (max-width: 37.5em) {
    #page .emailphoto {
      min-height: 200px;
      height: 200px;
    }
  }

.wrapper-landing {
  max-width: 130rem;
  background-color: #fff;
  background-size: cover;
  background-position: top;
  height: 90vh;
  margin: 2rem auto;
  padding: 1rem;
  display: grid;
  grid-gap: 1rem;
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 5px 5px 8px 5px #888888; }
  .wrapper-landing-logo {
    display: grid;
    grid-column: 1 / -1;
    align-items: center; }
    .wrapper-landing-logo img {
      width: 100%; }
  .wrapper-landing-introtext {
    max-width: 60rem;
    font-size: 3rem;
    color: #000;
    margin: auto; }
    @media only screen and (max-width: 56.25em) {
      .wrapper-landing-introtext {
        font-size: 2.5rem;
        margin: 2rem; } }
    @media only screen and (max-width: 37.5em) {
      .wrapper-landing-introtext {
        font-size: 2rem;
        margin: 2rem; } }
  .wrapper-landing-action {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3 / 4;
    justify-content: space-evenly;
    align-items: center;
    background-color: transparent; }
    @media only screen and (max-width: 37.5em) {
      .wrapper-landing-action {
        flex-direction: column; } }

.button {
  background-color: var(--color-blue);
  border: none;
  border-radius: 12px;
  color: #fff;
  width: 24rem;
  height: 8rem;
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease; }
  @media only screen and (max-width: 37.5em) {
    .button {
      width: 30rem;
      height: 10rem;
      margin-bottom: 1.5rem; } }
  .button:hover {
    background-color: var(--color-blue);
    color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none; }

.footer {
  background-color: darkgreen;
  color: lightgray; }

/* Contact Form Styling */
#page .contact-form {
  padding: 15px 40px;
  max-width: 100%;
  box-sizing: border-box;
}

#page .contact-form .form-row {
  margin-right: 0;
  margin-left: 0;
  max-width: 100%;
  margin-bottom: 0.8rem;
}

#page .contact-form .form-control {
  border: 2px solid var(--color-blue-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  padding: 0.5rem 0.75rem;
}

#page .contact-form .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 0.2rem var(--color-blue-focus);
}

#page .contact-form label {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

#page .contact-form .form-group {
  margin-bottom: 1rem;
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
}

#page .gdpr-check {
  background-color: var(--color-orange-light);
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 15px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}

#page .gdpr-check .form-check-input {
  margin-top: 0.3rem;
  margin-right: 25px;
  flex-shrink: 0;
}

#page .gdpr-check .form-check-label {
  color: var(--dark-color);
  font-size: 1.2rem;
  line-height: 1.3;
  flex-grow: 1;
  margin: 0 0 0 10px;
  padding: 0;
}

#page .form-check-input {
  margin-top: 0.2rem;
}

#page .h1contact {
  color: var(--color-blue);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-left: 40px;
  padding-top: 15px;
}

#page .required {
  color: var(--color-orange);
  margin-left: 4px;
}

#page .contact-submit {
  background-color: var(--color-orange) !important;
  border: none !important;
  padding: 8px 25px !important;  /* Slightly reduced padding */
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  width: auto !important;
  margin-top: 0.5rem !important;  /* Added small top margin */
}

#page .contact-submit:hover {
  background-color: var(--color-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .contact-submit:disabled {
  background-color: var(--color-disabled) !important;
  cursor: not-allowed;
}

/* Adjust content spacing */
#page .content > * {
  margin-bottom: 1rem;  /* Add consistent spacing between content elements */
}

#page .content > *:last-child {
  margin-bottom: 0;  /* Remove margin from last element */
}

#page .jobdetail .form-row {
  background-color: var(--color-orange-light);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

#page .jobdetail .form-row label {
  color: var(--dark-color);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.4;
}

#page .jobdetail .form-row .form-control[type="checkbox"] {
  margin-bottom: 1.5rem;
  width: auto;
  height: auto;
  margin-right: 0.5rem;
}

#page .jobdetail #submitButton {
  background-color: var(--color-orange) !important;
  border: none !important;
  padding: 10px 30px !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  width: auto !important;
  color: white !important;
}

#page .jobdetail #submitButton:hover {
  background-color: var(--color-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .jobdetail #submitButton:disabled {
  background-color: var(--color-disabled) !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#page .jobdetail .required {
  color: var(--color-orange);
  margin-left: 4px;
}

/* Update modal dialog styling */
#page .modal-dialog {
  max-width: 800px;
}

#page .modal-content {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#page .modal-header {
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

#page .modal-header h1 {
  color: var(--color-blue);
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0;
}

#page .modal-body {
  padding: 0;
}

#page .modal-body .form-group {
  margin-bottom: 2rem;
}

#page .modal-body label {
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

#page .modal-body .form-control {
  border: 2px solid var(--color-blue-light);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

#page .modal-body .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 0.2rem rgba(32, 59, 80, 0.2);
}

#page .modal-body textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#page .modal-body .form-text {
  color: var(--color-blue);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

#page .modal-body .alert-danger {
  background-color: var(--color-orange-light);
  border: none;
  color: var(--color-orange);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
}

#page .modal-body .alert-danger p {
  margin: 0;
  font-size: 1.3rem;
}

#page .modal-footer {
  border: none;
  padding: 2rem 0 0 0;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

#page .modal-footer .btn {
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#page .modal-footer .btn-primary {
  background-color: var(--color-orange);
  border: none;
}

#page .modal-footer .btn-primary:hover {
  background-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .modal-footer .btn-secondary {
  background-color: var(--color-blue-light);
  border: none;
  color: var(--color-blue);
}

#page .modal-footer .btn-secondary:hover {
  background-color: var(--color-blue);
  color: white;
}

#page .job-form {
  padding: 2rem;
}

#page .job-form .form-group {
  margin-bottom: 2rem;
}

#page .job-form .form-label {
  color: var(--color-blue);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

#page .job-form .form-control {
  border: 2px solid var(--color-blue-light);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

#page .job-form .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}

#page .job-form select.form-control {
  height: auto;
  padding: 0.5rem;
}

#page .job-form .form-text {
  color: var(--color-blue-grey);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

#page .job-form .button-group {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

#page .job-form .btn {
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#page .job-form .btn-primary {
  background-color: var(--color-orange);
  border: none;
  color: white;
}

#page .job-form .btn-primary:hover {
  background-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .job-form .btn-secondary {
  background-color: var(--color-blue-light);
  border: none;
  color: var(--color-blue);
}

#page .job-form .btn-secondary:hover {
  background-color: var(--color-blue);
  color: white;
}

#page .job-form .required {
  color: var(--color-orange);
  margin-left: 4px;
}

#page .delete-confirmation {
  padding: 2rem;
}

#page .delete-confirmation .alert-warning {
  background-color: rgba(255, 102, 51, 0.1);
  border: 2px solid var(--color-orange);
  border-radius: 8px;
  padding: 2rem;
}

#page .delete-confirmation h2 {
  color: var(--color-orange);
  font-size: 2.4rem;
  font-weight: 600;
}

#page .delete-confirmation p {
  color: var(--dark-color);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

#page .delete-confirmation strong {
  color: var(--color-blue);
}

#page .delete-confirmation .btn-danger {
  background-color: #dc3545;
  border: none;
  color: white;
}

#page .delete-confirmation .btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .filter-header {
  padding: 2rem;
  border-bottom: 1px solid var(--color-blue-light);
}

#page .filter-header h2 {
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

#page .filter-subtitle {
  color: var(--color-blue-grey);
  font-size: 1.4rem;
}

#page .filter-form {
  padding: 2rem;
}

#page .filter-section {
  margin-bottom: 2.5rem;
}

#page .filter-section h3 {
  color: var(--color-blue);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

#page .filter-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#page .filter-options label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-blue-grey);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#page .filter-options label:hover {
  color: var(--color-blue);
}

#page .filter-options input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid var(--color-blue-light);
  border-radius: 4px;
  cursor: pointer;
}

#page .filter-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#page .filter-submit:hover {
  background-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .joblist-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

#page .joblist-header-main h2 {
  color: var(--color-blue);
}

#page .results-count {
  color: var(--color-blue-grey);
  font-size: 1.4rem;
}

#page .joblist-item {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-blue-light);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

#page .joblist-item:hover {
  border-color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#page .joblist-content {
  margin-bottom: 2rem;
}

#page .joblist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

#page .job-title {
  color: var(--color-blue);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
}

#page .job-date {
  color: var(--color-blue-grey);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#page .joblist-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

#page .detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-blue-grey);
  font-size: 1.4rem;
}

#page .detail-item i {
  color: var(--color-blue);
  font-size: 1.6rem;
}

#page .badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

#page .badge-sector {
  background-color: rgba(0, 51, 102, 0.1);
  color: var(--color-blue);
}

#page .badge-language {
  background-color: rgba(255, 102, 51, 0.1);
  color: var(--color-orange);
}

#page .joblist-description {
  color: var(--dark-color);
  font-size: 1.5rem;
  line-height: 1.6;
}

#page .joblist-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-blue-light);
}

#page .admin-actions {
  display: flex;
  gap: 1rem;
}

#page .admin-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
}

#page .no-jobs {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--color-blue-light);
}

#page .no-jobs i {
  font-size: 4rem;
  color: var(--color-blue-light);
  margin-bottom: 2rem;
}

#page .no-jobs h3 {
  color: var(--color-blue);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

#page .no-jobs p {
  color: var(--color-blue-grey);
  font-size: 1.6rem;
}

#page .side-content {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

#page .side-content i {
  font-size: 3rem;
  color: var(--color-orange);
  margin-bottom: 1.5rem;
}

#page .side-content h3 {
  color: var(--color-blue);
  font-size: 2rem;
  margin-bottom: 2rem;
}

#page .side-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

#page .side-content li {
  color: var(--color-blue-grey);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

#page .side-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-orange);
}

/* Mobile layout for job list items */
@media only screen and (max-width: 768px) {
  #page .joblist-header {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: flex-start !important;
    height: auto !important;
    margin-bottom: 1.5rem !important;
  }

  #page .joblist-details {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  #page .job-date {
    font-size: 1.2rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }

  #page .job-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
  }
}

/* Additional mobile breakpoint for smaller screens */
@media only screen and (max-width: 37.5em) {
  #page .joblist-header {
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: flex-start !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
  }

  #page .job-title {
    font-size: 1.6rem !important;
    line-height: 1.2 !important;
  }

  #page .job-date {
    font-size: 1.1rem !important;
    margin-top: 0.3rem !important;
  }
}

  #page .joblist-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  #page .button-more {
    width: 100%;
    text-align: center;
  }

  #page .admin-actions {
    width: 100%;
    justify-content: stretch;
  }

  #page .admin-actions .btn {
    flex: 1;
    justify-content: center;
  }

  /* Additional mobile spacing fixes */
  #page .joblist-item {
    margin-bottom: 2.5rem;
  }

  #page .joblist-content {
    margin-bottom: 2rem;
  }

  #page .detail-item {
    margin-bottom: 0.8rem;
  }

  #page .detail-item:last-child {
    margin-bottom: 0;
  }
}

#page .application-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#page .application-header {
  background: var(--color-blue);
  color: white;
  padding: 2.5rem;
  position: relative;
  border: none;
}

#page .application-header .header-content {
  padding-right: 3rem;
}

#page .application-header h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

#page .application-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

#page .application-header .job-meta {
  font-size: 1.4rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#page .application-header .separator {
  opacity: 0.5;
}

#page .close-button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.4rem;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.3s ease;
}

#page .close-button:hover {
  opacity: 1;
  transform: scale(1.1);
}

#page .application-body {
  padding: 3rem;
}

#page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

#page .form-group.full-width {
  grid-column: 1 / -1;
}

#page .application-form .form-label {
  color: var(--color-blue);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

#page .application-form .form-control {
  border: 2px solid var(--color-blue-light);
  border-radius: 8px;
  padding: 1.2rem;
  font-size: 1.4rem;
  width: 100%;
  transition: all 0.3s ease;
}

#page .application-form .form-control:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25);
}

#page .input-icon-wrapper {
  position: relative;
}

#page .input-icon-wrapper i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-blue-grey);
  font-size: 1.6rem;
}

#page .input-icon-wrapper .form-control {
  padding-left: 4rem;
}

#page .file-upload-wrapper {
  border: 2px dashed var(--color-blue-light);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  background-color: #f8f9fa;
}

#page .file-upload-wrapper:hover {
  border-color: var(--color-orange);
  background-color: rgba(255, 102, 51, 0.05);
}

#page .file-upload-info {
  color: var(--color-blue-grey);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#page .file-upload-info i {
  font-size: 2.4rem;
  color: var(--color-blue);
  display: block;
}

#page .file-upload-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-blue-light);
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--color-blue-grey);
}

#page .file-upload-input::-webkit-file-upload-button {
  background-color: var(--color-blue);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  vertical-align: middle;
}

#page .file-upload-input::-webkit-file-upload-button:hover {
  background-color: var(--color-orange);
}

#page .field-error {
  margin-top: 0.8rem;
  color: #dc3545;
  font-size: 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

#page .field-error i {
  margin-top: 0.2rem;
}

#page .privacy-notice {
  margin-top: 3rem;
  padding: 12px 20px;
  background-color: var(--color-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

#page .privacy-notice i {
  font-size: 2.4rem;
  color: var(--color-blue);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

#page .privacy-notice p {
  color: var(--dark-color);
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

#page .application-footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--color-blue-light);
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

#page .application-footer .btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#page .application-footer .btn-primary {
  background-color: var(--color-orange);
  border: none;
  color: white;
}

#page .application-footer .btn-primary:hover {
  background-color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#page .application-footer .btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-blue-light);
  color: var(--color-blue);
}

#page .application-footer .btn-secondary:hover {
  background-color: var(--color-blue-light);
}

#page .application-alert {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  border-radius: 8px;
}

#page .application-alert i {
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  #page .form-grid {
    grid-template-columns: 1fr;
  }

  #page .application-header {
    padding: 2rem;
  }

  #page .application-body {
    padding: 2rem;
  }

  #page .application-footer {
    padding: 1.5rem 2rem;
    flex-direction: column-reverse;
  }

  #page .application-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

#page .pagination-wrapper {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

#page .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

#page .page-item {
  margin: 0;
}

#page .page-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  color: var(--color-blue);
  background-color: white;
  border: 2px solid var(--color-blue-light);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

#page .page-item.active .page-link {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

#page .page-link:hover:not(.active) {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#page .page-item:first-child .page-link,
#page .page-item:last-child .page-link {
  padding: 1rem 2rem;
}

#page .page-item.disabled .page-link {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  #page .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  #page .page-link {
    padding: 0.8rem 1.2rem;
    font-size: 1.3rem;
  }

  #page .page-item:first-child .page-link span,
  #page .page-item:last-child .page-link span {
    display: none;
  }
}

#page .employer-page {
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem;
}

#page .employer-hero {
  text-align: center;
  padding: 6rem 2rem;
  background-color: var(--color-blue);
  color: white;
  border-radius: 1rem;
  margin-bottom: 4rem;
}

#page .employer-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

#page .employer-hero .hero-subtitle {
  font-size: 2rem;
  opacity: 0.9;
}

#page .employer-section {
  background-color: white;
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#page .section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  color: var(--color-blue);
}

#page .section-header i {
  font-size: 3rem;
}

#page .section-header h2 {
  font-size: 2.8rem;
  margin: 0;
  color: var(--color-blue);
}

#page .text-content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

#page .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

#page .service-card {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

#page .service-card:hover {
  transform: translateY(-5px);
}

#page .service-card i {
  font-size: 3.5rem;
  color: var(--color-orange);
  margin-bottom: 2rem;
}

#page .service-card h3 {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}

#page .service-card p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}

#page .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

#page .step {
  text-align: center;
  position: relative;
}

#page .step-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 auto 2rem;
}

#page .step h3 {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}

#page .step p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}

#page .employer-cta {
  text-align: center;
  background-color: #f8f9fa;
  padding: 6rem 3rem;
  border-radius: 1rem;
  margin-bottom: 4rem;
}

#page .employer-cta h2 {
  font-size: 3.2rem;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}

#page .employer-cta p {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 3rem;
}

#page .cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

#page .button-primary,
#page .button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

#page .button-primary {
  background-color: var(--color-orange);
  color: white;
}

#page .button-primary:hover {
  background-color: #ff5522;
  transform: translateY(-2px);
}

#page .button-secondary {
  background-color: white;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

#page .button-secondary:hover {
  background-color: var(--color-blue);
  color: white;
  transform: translateY(-2px);
}

@media only screen and (max-width: 768px) {
  #page .employer-hero {
    padding: 4rem 2rem;
  }

  #page .employer-hero h1 {
    font-size: 3rem;
  }

  #page .employer-hero .hero-subtitle {
    font-size: 1.8rem;
  }

  #page .employer-section {
    padding: 2rem;
  }

  #page .services-grid,
  #page .process-steps {
    grid-template-columns: 1fr;
  }

  #page .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }

  #page .button-primary,
  #page .button-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Load More Button Styles */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.load-more-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.4rem;
  background-color: white;
  border: 2px solid var(--color-blue);
  border-radius: 8px;
  color: var(--color-blue);
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-button:hover {
  background-color: var(--color-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.load-more-button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.load-more-button.loading .bi-arrow-down-circle {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Job Success Message Styles */
.success-message {
  text-align: center;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.success-icon {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 1rem;
}

.success-message h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.success-message p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.success-message .btn {
  min-width: 120px;
  background-color: var(--color-orange) !important;
  border: none !important;
  color: white !important;
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.success-message .btn:hover {
  background-color: var(--color-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hide jobsidediv on mobile screens */
@media (max-width: 768px) {
  .jobsidediv {
    display: none !important;
  }
}

/* About Us page styles */
.about-us-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem;
}

.about-toggle {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  border: 2px solid var(--color-blue);
  background-color: white;
  color: var(--color-blue);
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background-color: var(--color-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toggle-btn.active {
  background-color: var(--color-blue);
  color: white;
}

.toggle-btn i {
  font-size: 2rem;
}

.about-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-section.active {
  display: block;
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .about-toggle {
    flex-direction: column;
    gap: 1rem;
  }
  
  .toggle-btn {
    width: 100%;
    justify-content: center;
  }
}
