* {
      box-sizing: border-box;
    }
    
    body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #f5f9f5 0%, #e8f4e8 100%);
      color: #333;
      line-height: 1.6;
    }

    /* Navigation Bar */
    header {
      background-color: #4CAF50;
      color: white;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    header h1 {
      font-size: 1.5rem;
      margin: 0;
      font-weight: 600;
    }

    .hamburger {
      font-size: 28px;
      cursor: pointer;
      display: none;
    }

    nav {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 4px;
      white-space: nowrap;
    }

    nav a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    nav a.login-btn {
      background-color: #FF8C00;
      padding: 8px 16px;
      border-radius: 5px;
    }

    nav a.login-btn:hover {
      background-color: #e67e00;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .close {
      display: none;
      font-size: 30px;
      position: absolute;
      top: 10px;
      right: 20px;
      cursor: pointer;
      color: #fff;
    }

    @media (max-width: 1024px) {
      nav {
        gap: 10px;
      }
      
      nav a {
        font-size: 0.9rem;
        padding: 4px 8px;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #388E3C;
        width: 220px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        gap: 0;
      }

      nav.show {
        display: flex;
      }

      nav a {
        padding: 12px 0;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
      }

      nav a:last-child {
        border-bottom: none;
      }

      .close {
        display: block;
        font-size: 26px;
        text-align: right;
        margin-bottom: 10px;
      }
    }

    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #2e7d32 0%, #4CAF50 100%);
      color: white;
      text-align: center;
      padding: 100px 20px 60px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
      background-size: cover;
    }

    .page-header h1 {
      font-size: 2.5rem;
      margin: 0 0 15px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-header p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Main Content */
    .container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto 40px;
      padding: 0 20px;
      gap: 30px;
    }

    .main-content {
      flex: 3;
    }

    .sidebar {
      flex: 1;
    }

    /* Content Sections */
    .content-section {
      background: white;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border-left: 5px solid #4CAF50;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .content-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #4CAF50, #2e7d32);
    }

    .content-section:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .content-section h2, .content-section h3 {
      color: #2e7d32;
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .content-section h2 {
      font-size: 1.8rem;
    }

    .content-section h3 {
      font-size: 1.5rem;
    }

    .content-section h4 {
      color: #2e7d32;
      margin-top: 25px;
      margin-bottom: 10px;
      font-size: 1.3rem;
      border-bottom: 2px solid #eaeaea;
      padding-bottom: 5px;
    }

    .content-section p, .content-section li {
      color: #555;
      font-size: 1.05rem;
    }

    .content-section a {
      color: #4CAF50;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .content-section a:hover {
      color: #2e7d32;
      text-decoration: underline;
    }

    .content-section ul, .content-section ol {
      padding-left: 20px;
    }

    .content-section li {
      margin-bottom: 8px;
    }

    .content-section strong {
      color: #2e7d32;
    }

    /* Position Cards */
    .position-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border-left: 5px solid #FF8C00;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .position-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #FF8C00, #FFA500);
    }

    .position-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .position-card h3 {
      color: #2e7d32;
      margin-top: 0;
      margin-bottom: 15px;
      font-weight: 600;
      font-size: 1.4rem;
    }

    .position-card p {
      color: #555;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    .section-title {
      margin-top: 40px;
      color: #2e7d32;
      font-size: 1.8rem;
      border-bottom: 3px solid #4CAF50;
      padding-bottom: 10px;
      margin-bottom: 25px;
      font-weight: 600;
    }

    /* Apply Button */
    .applyBtn {
      display: inline-block;
      background: #4CAF50;
      color: white;
      padding: 15px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      border: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .applyBtn:hover {
      background-color: #45a049;
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .apply-center {
      text-align: center;
      margin: 40px 0;
    }

    /* Modals */
    .jobApplyModal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }

    .jobApplyModal .modal-content {
      background: white;
      padding: 30px;
      border-radius: 15px;
      width: 450px;
      max-width: 90%;
      box-shadow: 0 12px 25px rgba(0,0,0,0.4);
      text-align: left;
      animation: fadeIn 0.3s ease-out;
      border-top: 5px solid #4CAF50;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .jobApplyModal h2 {
      color: #2e7d32;
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .jobApplyModal label {
      display: block;
      margin-top: 15px;
      font-weight: 600;
      color: #333;
    }

    .jobApplyModal input, .jobApplyModal textarea, .jobApplyModal select {
      width: 100%;
      padding: 12px;
      margin-top: 5px;
      border-radius: 8px;
      border: 1px solid #ccc;
      box-sizing: border-box;
      font-family: inherit;
      font-size: 1rem;
    }

    .jobApplyModal input:focus, .jobApplyModal textarea:focus, .jobApplyModal select:focus {
      outline: none;
      border-color: #4CAF50;
      box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    }

    .modal-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 25px;
    }

    .jobApplyModal button {
      padding: 12px 22px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn {
      background-color: #4CAF50;
      color: white;
    }

    .submit-btn:hover {
      background-color: #45a049;
      transform: translateY(-2px);
    }

    .cancel-btn {
      background-color: #f44336;
      color: white;
    }

    .cancel-btn:hover {
      background-color: #da190b;
      transform: translateY(-2px);
    }

    .next-btn, .back-btn {
      background-color: #0077cc;
      color: white;
    }

    .next-btn:hover, .back-btn:hover {
      background-color: #005fa3;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #2e7d32 0%, #4CAF50 100%);
      color: #fff;
      text-align: center;
      padding: 40px 20px;
      font-size: 0.95rem;
      position: relative;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #FF8C00, #FFA500);
    }

    footer a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 4px;
    }

    footer a:hover {
      background-color: rgba(255, 255, 255, 0.1);
      text-decoration: none;
    }

    footer p {
      margin: 20px 0 0;
      opacity: 0.9;
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: #4CAF50;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background: #2e7d32;
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }
      
      .page-header {
        padding: 120px 20px 40px;
      }
      
      .page-header h1 {
        font-size: 2rem;
      }
      
      .page-header p {
        font-size: 1.1rem;
      }
      
      .content-section, .position-card {
        padding: 20px;
      }
      
      .content-section h2 {
        font-size: 1.6rem;
      }
      
      .content-section h3 {
        font-size: 1.3rem;
      }
      
      .section-title {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .page-header h1 {
        font-size: 1.8rem;
      }
      
      .page-header p {
        font-size: 1rem;
      }
      
      .content-section, .position-card {
        padding: 15px;
      }
      
      .modal-buttons {
        flex-direction: column;
      }
      
      .jobApplyModal button {
        width: 100%;
        margin-bottom: 10px;
      }
    }