    .career-hero {
      background: linear-gradient(135deg, #2c5e1e, #1a3a10);
      color: white;
      padding: 3rem 2rem;
      text-align: center;
      border-radius: 0 0 50px 50px;
      margin-bottom: 3rem;
    }
    .career-hero h1 { color: white; margin-bottom: 1rem; }
    .career-hero p { font-size: 1.1rem; opacity: 0.9; }
    
    .career-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }
    
    .why-join {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 3rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .why-join h2 {
      color: #2c5e1e;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1.5rem;
    }
    
    .benefit-card {
      text-align: center;
      padding: 1.5rem;
      background: #f9f9f9;
      border-radius: 20px;
      transition: transform 0.2s;
    }
    
    .benefit-card:hover {
      transform: translateY(-5px);
    }
    
    .benefit-card i {
      font-size: 48px;
      color: #e87c2a;
      margin-bottom: 1rem;
    }
    
    .benefit-card h4 {
      color: #2c5e1e;
      margin-bottom: 0.5rem;
    }
    
    .benefit-card p {
      color: #666;
      font-size: 0.9rem;
    }
    
    .jobs-section {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .jobs-section h2 {
      color: #2c5e1e;
      margin-bottom: 1.5rem;
    }
    
    .job-card {
      background: #f9f9f9;
      border-radius: 20px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: all 0.2s;
      border-left: 4px solid #e87c2a;
    }
    
    .job-card:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .job-title {
      font-size: 1.3rem;
      color: #2c5e1e;
      margin-bottom: 0.25rem;
    }
    
    .job-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }
    
    .job-meta span {
      background: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: #555;
    }
    
    .job-meta i {
      margin-right: 5px;
      color: #e87c2a;
    }
    
    .job-description {
      color: #555;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    
    .apply-btn {
      background: #e87c2a;
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s;
    }
    
    .apply-btn:hover {
      background: #2c5e1e;
    }
    
    .no-jobs {
      text-align: center;
      padding: 3rem;
      color: #666;
    }
    
    .culture-section {
      background: linear-gradient(135deg, #2c5e1e, #1a3a10);
      color: white;
      border-radius: 24px;
      padding: 2rem;
      margin-top: 3rem;
      text-align: center;
    }
    
    .culture-section h3 {
      margin-bottom: 1rem;
    }
    
    .culture-section p {
      opacity: 0.9;
      margin-bottom: 1.5rem;
    }
    
    .email-link {
      color: #f3b27a;
      text-decoration: none;
      font-weight: 600;
    }
    
    .email-link:hover {
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      .job-header {
        flex-direction: column;
      }
      
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }
