* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

  }

  .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('images/vision.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease;
  }

  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .tab-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
  }

  .tab {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .tab.active {
    background: #3498db;
    color: white;
  }

  .job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .job-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .job-card:hover {
    transform: translateY(-5px);
  }

  .job-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .job-content {
    padding: 1.5rem;
  }

  .job-type {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .type-full-time {
    background: #e3f2fd;
    color: #1976d2;
  }

  .type-part-time {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .type-volunteer {
    background: #fff3e0;
    color: #ef6c00;
  }

  .job-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }

  .job-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .job-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .apply-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
  }

  .apply-button:hover {
    background: #2980b9;
  }

  .featured-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 2rem 0;
  }

  .featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
  }

  .featured-text {
    padding: 2rem;
  }

  .featured-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
  }

  .featured-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .stat-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    color: #666;
    font-size: 1.1rem;
  }

  .footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
  }

  @media (max-width: 768px) {
    .tabs {
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 1rem;
    }
    
    .featured-content {
      grid-template-columns: 1fr;
    }
  }