:root {
      --primary: #1e3c78;
      --accent: #3e7dde;
      --bg: #f7fafd;
      --card-bg: #fff;
      --card-border: #e3e8f0;
      --muted: #7b8ca7;
      --shadow: 0 6px 28px rgba(0, 0, 0, 0.11);
    }

:root {
      --primary-color: #1a3a58;
      --secondary-color: #4a90e2;
      --accent-color: #ff6b6b;
      --bg-light: #f8f9fa;
      --bg-contrast: #e2e7ef;
      --heading-color: #1a3a58;
      --text-light: #f8f9fa;
      --card-shadow: 0 8px 30px rgba(0,0,0,0.08);
      --border-radius: 22px;
    }  
    
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      height: 100%;
    }

    a { text-decoration: none; color: var(--primary-color); transition: all 0.3s; }
    ul { list-style: none; }
    
    body {
      font-family: 'DM Sans', Arial, sans-serif;
      background: var(--bg);
      color: #222;
      min-height: 100vh;
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0; left: 0; width: 100%;
      background-color: rgba(26, 58, 88, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.3s;
    }
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .container {
      width: 100%;
      max-width: 1450px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 1px;
    }
    .logo img { width: 200px;}
    .nav-links {
      display: flex;
      align-items: center;
      transition: max-height 0.3s;
    }
    .nav-links li { margin-left: 2.2rem; }
    .nav-links a {
      color: #fff; font-weight: 500; position: relative;
    }
    .nav-links a:hover { color: #4a90e2; }
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: #4a90e2;
      bottom: -5px;
      left: 0;
      transition: width 0.3s;
    }
    .nav-links a:hover::after { width: 100%; }
    .burger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
      margin-left: 1.5rem;
      z-index: 1100;
      transition: all 0.3s;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      transition: all 0.4s cubic-bezier(.4,0,.2,1);
    }
    .burger.toggle div:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger.toggle div:nth-child(2) {
      opacity: 0;
    }
    .burger.toggle div:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .nav-links {
      transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
    }
    .nav-links.mobile-anim-in {
      animation: navFadeIn 0.35s cubic-bezier(.4,0,.2,1);
    }
    .nav-links.mobile-anim-out {
      animation: navFadeOut 0.35s cubic-bezier(.4,0,.2,1);
    }
    @keyframes navFadeIn {
      from { opacity: 0; transform: translateY(-20px);}
      to { opacity: 1; transform: translateY(0);}
    }
    @keyframes navFadeOut {
      from { opacity: 1; transform: translateY(0);}
      to { opacity: 0; transform: translateY(-20px);}
    }
    
    .header2 {
      padding-top: 110px;
      margin-bottom: 2.5rem;
      text-align: center;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .header2 h1 {
      font-size: clamp(3rem, 8vw, 4.5rem);
      color: var(--primary);
      font-weight: 900;
      letter-spacing: 1px;
      margin-bottom: 0.2rem;
      background: none;
      text-shadow: none;
      line-height: 1.05;
      margin-left: 0;
      margin-right: 0;
      padding: 0;
      display: block;
    }
    .header2 p {
      color: #555;
      font-size: 1.15rem;
      font-weight: 400;
      margin-top: 0.45rem;
      margin-left: 0;
      margin-right: 0;
    }
    .jobs-section {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 1rem 2rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.3rem;
      min-height: 50vh;
      position: relative;
    }
    .job-card {
      position: relative;
      background: var(--card-bg);
      border-radius: 1.1rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--card-border);
      padding: 1.6rem 1.5rem 1.3rem 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 150px;
      overflow: hidden;
    }
    .job-icon {
      position: absolute;
      top: 1.1rem;
      right: 1.1rem;
      width: 44px;
      height: 44px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border-radius: 0;
      box-shadow: none;
      border: none;
      opacity: 0.92;
    }
    .job-icon svg {
      width: 44px;
      height: 44px;
      color: #3e7dde;
      display: block;
    }
    .job-title {
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 1.1rem;
      letter-spacing: 0.2px;
      line-height: 1.15;
      text-align: left;
      max-width: 80%;
      word-break: break-word;
    }
    .job-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.1rem;
      margin-bottom: 0.8rem;
      margin-left: -0.08em;
    }
    .job-meta {
      display: flex;
      align-items: center;
      font-size: 0.99rem;
      padding: 0.18em 1em;
      border-radius: 1.2em;
      background: #f7fafd;
      color: var(--accent);
      font-weight: 600;
      border: 1px solid #e3e8f0;
      letter-spacing: 0.1px;
      box-shadow: 0 1px 4px rgba(30,60,120,0.03);
    }
    .job-location {
      color: var(--primary);
      background: #e8f0fe;
      border: 1px solid #d5e2fa;
    }
    .job-date {
      color: #fff;
      background: var(--accent);
      border: none;
    }
    .job-desc {
      font-size: 1.03rem;
      color: #222;
      margin-top: 0.1rem;
      font-weight: 400;
      line-height: 1.6;
      background: #f8fafd;
      border-radius: 0.7em;
      padding: 0.9em 1.1em 0.9em 1.1em;
      border: 1px solid #e3e8f0;
      margin-bottom: 0;
      box-shadow: 0 1px 4px rgba(30,60,120,0.02);
    }
    .no-jobs-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 0;
      pointer-events: none;
      background: none;
    }
    .no-jobs-text {
      font-size: clamp(2.2rem, 7vw, 4.2rem);
      font-weight: 700;
      color: #dde3ed;
      letter-spacing: 1.5px;
      text-align: center;
      line-height: 1.1;
      user-select: none;
      font-family: 'DM Sans', Arial, sans-serif;
      opacity: 0.93;
      border-radius: 1.2em;
      padding: 0.2em 0.7em;
      box-shadow: none;
      background: none;
      border: none;
      text-shadow: none;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .jobs-section {
        max-width: 98vw;
      }
      .job-card {
        padding: 1.2rem 0.8rem 1rem 0.8rem;
        border-radius: 0.9rem;
      }
      .job-title {
        font-size: 1.08rem;
        max-width: 100%;
      }
      .job-desc {
        font-size: 0.97rem;
        padding: 0.7em 0.7em 0.7em 0.7em;
      }
      .job-icon, .job-icon svg {
        width: 34px;
        height: 34px;
      }
    }
    @media (max-width: 600px) {
      .header2 h1 {
        font-size: 2rem;
      }
      .header2 p {
        font-size: 0.98rem;
      }
      .job-card {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
      }
      .job-title {
        font-size: 0.9rem;
      }
      .job-desc {
        font-size: 0.89rem;
        padding: 0.5em 0.5em;
      }
      .job-meta {
        font-size: 0.72rem;
      }
      
      .job-icon, .job-icon svg {
        width: 40px;
        height: 40px;
        margin-top: -9px;
      }
    }
    @media (max-width: 400px) {
      nav {
        height: 48px;
      }
      .header2 {
        padding-top: 65px;
      }
      .job-title {
        font-size: 1.1rem;
      }
      .job-meta {
        font-size: 0.82rem;
      }
      .job-desc {
        font-size: 0.81rem;
      }
      .job-icon, .job-icon svg {
        width: 28px;
        height: 28px;
      }
    }

    @media screen and (max-width: 768px) {
      .container { padding: 0 7vw; }
      .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(26, 58, 88, 0.98);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        padding: 2rem 0;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
      }
      .nav-links.nav-active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
      }
      .nav-links li { margin: 1rem 0; }
      .burger { display: flex; }
    }
    
    @media screen and (max-width: 480px) {
      .container { padding: 0 5vw; }
    }