 .careers-hero {
       background: linear-gradient(135deg, rgba(0, 170, 193, 0.9), rgba(46, 46, 56, 0.8)), url('../images/about-us-banner.jpg') no-repeat center center / cover;
      height: 60vh;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .culture-section {
      padding: 80px 0;
      background: white;
    }

    .culture-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 50px;
    }

    .culture-card {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .culture-card:hover {
      transform: translateY(-10px);
      border-color: var(--secondary-color);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .culture-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--secondary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2rem;
      color: white;
    }

    .culture-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .culture-description {
      color: var(--text-light);
      line-height: 1.6;
    }

    .jobs-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .job-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border-left: 5px solid var(--secondary-color);
    }

    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .job-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 15px;
    }

    .job-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .job-department {
      color: var(--secondary-color);
      font-weight: 500;
      font-size: 1rem;
    }

    .job-meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .job-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .job-meta-item i {
      color: var(--secondary-color);
    }

    .job-description {
      color: var(--text-color);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .job-requirements {
      margin-bottom: 25px;
    }

    .job-requirements h5 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .job-requirements ul {
      list-style: none;
      padding: 0;
    }

    .job-requirements li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 8px;
      color: var(--text-color);
    }

    .job-requirements li i {
      color: var(--secondary-color);
      margin-right: 10px;
      margin-top: 3px;
      font-size: 0.8rem;
    }

    .job-actions {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .btn-apply {
      background: var(--secondary-color);
      color: white;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-apply:hover {
      background: #005f92;
      transform: translateY(-2px);
    }

    .job-salary {
      color: var(--secondary-color);
      font-weight: 600;
      font-size: 1.1rem;
    }

    .benefits-section {
      padding: 80px 0;
      background: var(--primary-color);
      color: white;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .benefit-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--accent-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .benefit-content h4 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .benefit-content p {
      opacity: 0.9;
      line-height: 1.5;
      font-size: 0.95rem;
    }

    .application-section {
      padding: 80px 0;
      background: white;
    }

    .application-form {
      max-width: 600px;
      margin: 0 auto;
      background: #f8f9fa;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--primary-color);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e9ecef;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--secondary-color);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .file-upload {
      position: relative;
      display: inline-block;
      cursor: pointer;
      width: 100%;
    }

    .file-upload input[type="file"] {
      position: absolute;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .file-upload-label {
      display: block;
      padding: 12px 15px;
      border: 2px dashed var(--secondary-color);
      border-radius: 10px;
      text-align: center;
      color: var(--secondary-color);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .file-upload:hover .file-upload-label {
      background: rgba(0, 119, 182, 0.1);
    }

    @media (max-width: 768px) {
      .careers-hero {
        height: 50vh;
      }
      
      .job-header {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .job-meta {
        flex-direction: column;
        gap: 10px;
      }
      
      .job-actions {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .application-form {
        padding: 30px 20px;
      }
    }