


 .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header span {
      color: #f24438;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-header h2 {
      font-size: 2.25rem;
      color: #0f172a;
      margin: 0px 0;
    }

    .section-header p {
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      font-size: 1rem;
    }

    /* Main split layout */
    .career-section {
      display: flex;
      gap: 30px;
      background: #ffffff;
      padding: 32px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
    }

    /* Left side buttons navigation */
    .career-nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 320px;
      flex-shrink: 0;
    }

    .tab-btn {
        font-family: 'Montserrat', sans-serif;
      text-align: left;
      padding: 16px 20px;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      background: #f8fafc;
      color: #475569;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .tab-btn:hover {
      background: #f1f5f9;
      color: #0f172a;
    }

    .tab-btn.active {
      background: #DA291C;
      color: #ffffff;
      border-color: #DA291C;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    }

    /* Right side content panel */
    .career-content-wrapper {
      flex-grow: 1;
      padding: 10px;
    }

    .career-content {
      display: none;
    }

    .career-content.active {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
    }

    .content-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .content-header h3 {
      font-size: 1.5rem;
      color: #0f172a;
    }

    .badge {
      background: #fef3c7;
      color: #b45309;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      text-transform: uppercase;
    }

    .salary {
      color: #059669;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 16px;
    }

    .description {
      color: #475569;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .skills-title {
      font-size: 0.75rem;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 12px;
    }

    .skills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .skill-tag {
      border: 1px solid #DA291C;
      color: #DA291C;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile responsive breakpoint */
    @media (max-width: 768px) {
      .career-section {
        flex-direction: column;
      }
      .career-nav {
        width: 100%;
      }
    }