body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #0b1221;
    color: #dfeeff;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    background: linear-gradient(135deg, #003566, #0077b6, #00b4d8);
    color: white;
    text-align: center;
    padding: 40px 0;
  }
  
  h1 {
    margin: 0;
    font-size: 2.2em;
    text-shadow: 2px 2px 5px rgba(0, 255, 255, 0.2);
  }
  
  .content {
    background-color: #162135;
    padding: 25px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.1);
  }
  
  .content > p {
    margin-bottom: 25px;
  }
  
  .job-description {
    margin-top: 25px;
  }
  
  .job-description h2 {
    font-size: 24px;
    color: #00d9ff;
  }
  
  .job-description p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .responsibilities,
  .requirements {
    margin-top: 20px;
  }
  
  .responsibilities ul,
  .requirements ul {
    padding-left: 20px;
    list-style-type: disc;
  }
  
  .responsibilities li,
  .requirements li {
    margin-bottom: 10px;
  }
  
  .small-print {
    font-size: 14px;
    color: #8fb6d1;
    margin-top: 20px;
    text-align: center;
  }
  
  .apply-button {
    text-align: center;
    margin-top: 25px;
  }
  
  .apply-button a {
    background-color: #00d9ff;
    color: #001219;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
  }
  
  .apply-button a:hover {
    background-color: #00aacc;
  }
  
  footer {
    background-color: #001d3d;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
  }
  
  h2 {
    color: #00d9ff;
  }
  
  p {
    color: #d1e9ff;
  }
  