/* Inline CSS extracted from career.txt */
.qdepot-careers {
      --qd-primary: #ef87aa;
      --qd-primary-dark: #d86f92;
      --qd-light: #fef6f9;
      --qd-dark: #333;
      --qd-gray: #777;
      --qd-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      font-size: 1.06rem;
      color: var(--qd-dark);
      background-color: #fff;
    }
    
    .qd-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 0.5rem;
    }
    
    .qd-header {
      background-color: var(--qd-primary);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }
    
    .qd-header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    
    .qd-subtitle {
      font-size: 1.5rem;
      opacity: 0.9;
      font-weight: 400;
    }
    
    .qd-intro {
      text-align: center;
      padding: 3rem 0;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .qd-intro h2 {
      margin-bottom: 1rem;
      color: var(--qd-primary-dark);
      font-weight: 600;
      font-size: 1.3rem;
    }
    
    .qd-jobs-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
      padding: 3rem 0;
    }
    
    .qd-job-card {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--qd-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
    }
    
    .qd-job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .qd-job-header {
      background-color: var(--qd-light);
      padding: 1.5rem;
      border-bottom: 3px solid var(--qd-primary);
    }
    
    .qd-job-title {
      font-size: 1.7rem;
      color: var(--qd-primary-dark);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    
    .qd-job-location {
      color: var(--qd-gray);
      font-weight: 500;
    }
    
    .qd-job-body {
      padding: 1.5rem;
    }
    
    .qd-job-section {
      margin-bottom: 1.5rem;
    }
    
    .qd-job-section h3 {
      margin-bottom: 0.8rem;
      color: var(--qd-primary-dark);
      font-size: 1.2rem;
      font-weight: 600;
    }
    
    .qd-job-section ul {
      padding-left: 1.5rem;
    }
    
    .qd-job-section li {
      margin-bottom: 0.5rem;
    }
    .qd-jobs-list {
    gap: 3rem; /* Base gap */
}

.qd-job-card {
    margin-bottom: 4rem;
}

.qd-job-card:last-child {
    margin-bottom: 0;
}
    
    .qd-apply-btn {
      display: inline-block;
      background-color: var(--qd-primary);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s, transform 0.2s;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 2px 8px rgba(239, 135, 170, 0.3);
    }
    
    .qd-apply-btn:hover {
      background-color: var(--qd-primary-dark);
      transform: translateY(-2px);
    }
    
    .qd-benefits {
      background-color: var(--qd-light);
      padding: 3rem 1rem;
      margin: 2rem 0;
    }
    
    .qd-benefits-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .qd-benefits h2 {
      text-align: center;
      color: var(--qd-primary-dark);
      margin-bottom: 2rem;
      font-weight: 600;
    }
    
    .qd-benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .qd-benefit-item {
      text-align: center;
      padding: 1.5rem;
      background: white;
      border-radius: 8px;
      box-shadow: var(--qd-shadow);
      transition: transform 0.3s ease;
    }
    
    .qd-benefit-item:hover {
      transform: translateY(-5px);
    }
    
    .qd-benefit-icon {
      font-size: 3rem;
      color: var(--qd-primary);
      margin-bottom: 1rem;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .qd-benefit-item h3 {
      margin-bottom: 0.5rem;
      color: var(--qd-dark);
      font-size: 1.4rem;
      font-weight: 600;
    }
    
    .qd-benefit-item p {
      color: var(--qd-gray);
      font-size: 1.1rem;
    }
    
    .qd-social-links {
      text-align: center;
      padding: 2rem 0;
      margin-top: 2rem;
    }
    
    .qd-social-links h3 {
      margin-bottom: 1rem;
      color: var(--qd-primary-dark);
      font-weight: 600;
    }
    
    .qd-social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }
    
    .qd-social-icons a {
      color: var(--qd-gray);
      font-size: 1.5rem;
      transition: color 0.3s, transform 0.3s;
    }
    
    .qd-social-icons a:hover {
      color: var(--qd-primary);
      transform: translateY(-3px);
    }
    
    .qd-keep-checking {
      margin-top: 1.5rem;
      font-size: 0.95rem;
      color: var(--qd-gray);
    }
    
    @media (max-width: 768px) {
      .qd-header h1 {
        font-size: 2rem;
      }
      
      .qd-job-title {
        font-size: 1.5rem;
      }
      
      .qd-benefits-grid {
        grid-template-columns: 1fr;
      }
      
      .qd-jobs-list {
        gap: 2.5rem;
      }
    }
