    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f5f7fa;
      color: #333;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }


    .page-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100vh;
    }


    header, footer {
      width: 100%;
      text-align: left;
      padding: 15px 0;
      border-bottom: 1px solid #ccc;
    }

    footer {
      border-top: 1px solid #ccc;
      border-bottom: none;
      margin-top: auto;
    }

    header h1 {
      margin: 0;
      font-size: 1.8rem;
      color: var(--title-color);
    }

    footer p {
      margin: 0;
      font-size: 0.9rem;
      color: #666;
    }


    main {
      display: flex;
      justify-content: flex-end; 
      align-items: flex-start;
      gap: 40px;
      margin-top: 30px;
    }

    .positions-list {
      max-width: 380px;
      background: white;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      color: #444;
      font-size: 1rem;
      line-height: 1.5;
      flex-shrink: 0;
    }

    .positions-list h2 {
      font-size: 1.5rem;
      color: var(--theme-color);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .positions-list ul {
      list-style-type: disc;
      padding-left: 20px;
      margin: 0;
    }

    .form-box {
      background: white;
      padding: 30px 40px;
      width: 380px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      text-align: left;
      flex-shrink: 0;
    }

    .form-box h1 {
      margin-bottom: 10px;
      font-weight: 700;
      color: #222;
    }

    .form-box p {
      margin-bottom: 25px;
      color: #555;
      font-size: 1rem;
      line-height: 1.4;
    }

    form label {
      display: block;
      margin-top: 15px;
      font-weight: 600;
      color: #444;
    }

    form input,
    form select {
      width: 100%;
      padding: 12px 14px;
      margin-top: 6px;
      border: 1.8px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    form input:focus,
    form select:focus {
      border-color: var(--theme-color);
      outline: none;
    }

    form button {
      margin-top: 25px;
      background: var(--theme-color);
      color: white;
      border: none;
      padding: 14px;
      width: 100%;
      border-radius: 7px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    form button:hover {
      background: var(--title-color);
      transition: all 0.4s ease-out;
    }

    .hidden {
      display: none;
    }

    #successMessage {
      margin-top: 20px;
      padding: 12px;
      background: #d4edda;
      color: #155724;
      border-radius: 7px;
      font-weight: 600;
      text-align: center;
    }

    .sky {
        color: var(--theme-color);
        font-size: 35px;
    }

    span {
      font-style: italic;
    }

    .heading_1 {
      font-size: 30px;
      font-weight: 400px;
    }

    b {
      color: black;
    }

    b:hover {
      color: lightslategray;
      transition: all 0.4s ease-in;
    }

    .email_id {
      color: var(--theme-color);
    }

    .positions-list:hover {
      background-color: var(--theme-color);
      transition: all 0.4s ease-in;
      color: white;

      a, h2 {
        color: white;
      }
    }

    p:hover {
      color: white;
    }

