/* General Styles */
.section-spacer {
    height: 100px;
  }
  
  .small-spacer {
    height: 20px;
  }
  
  /* Job Details Section */
  .job-details {
    background: rgba(0, 0, 0, 0.13); /* Glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border for glass effect */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Softer shadow for a floating effect */
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .job-details h1 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 3rem;
    color: #FFD700; /* Gold accent */
    margin-bottom: 20px;
    text-shadow: 0 0 10px #FFD700;
  }
  
  .job-details h2 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .job-details p {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
  }
  
  .job-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  .job-details ul li {
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 10px;
  }
  
  .job-details ul li:before {
    content: '✔';
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(0%);
    font-size: 1.2rem;
  }
  
  .job-details a.apply-link {
    display: inline-block;
    background-color: #4169e1; /* Royal blue accent */
    color: #ffffff;
    font-family: 'Neon-Regular', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
  }
  
  .job-details a.apply-link:hover {
    background-color: #364fc7; /* Slightly darker blue for hover effect */
  }
  
  /* Mobile Optimizations */
  @media screen and (max-width: 768px) {
    .job-details h1 {
      font-size: 2.5rem;
    }
  
    .job-details h2 {
      font-size: 1.8rem;
    }
  
    .job-details p,
    .job-details ul li {
      font-size: 1.1rem;
    }
  
    .job-details a.apply-link {
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .job-details {
      padding: 1.5rem;
    }
  
    .job-details h1 {
      font-size: 2rem;
    }
  
    .job-details h2 {
      font-size: 1.6rem;
    }
  
    .job-details p,
    .job-details ul li {
      font-size: 1rem;
    }
  
    .job-details a.apply-link {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }
  