/* RESET + BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #001f4d;
    color: #fff;
    padding: 20px;
  }
  
  .examples-page {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
  }
  
  h2 {
    font-size: 1.8rem;
    text-align: center;
    color: #00ace6;
    margin-bottom: 20px;
  }
  
  .job-group {
    background: rgba(0, 51, 153, 0.3);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
  }
  
  .job-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
  
  .job-photos img,
  .job-photos video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .job-photos img:hover,
  .job-photos video:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.7);
  }
  
  .see-more-btn {
    display: inline-block;
    background: #003399;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 20px auto 0;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .see-more-btn:hover {
    background: #001f66;
    transform: scale(1.05);
  }
  
  .job-photos .extra {
    display: none;
  }
  
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
    h2 {
      font-size: 1.5rem;
    }
    .job-photos {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    .job-photos {
      grid-template-columns: 1fr;
    }
  }
  