    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      color: #222;
    }

    /* HERO SECTION */
    .heroform {
      position: relative;
      height: 60vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .heroform-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .heroform-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    .heroform h1 {
      position: absolute;
      color: #fff;
      font-size: 3rem;
      z-index: 1;
      text-align: center;
    }

    /* FORM SECTION */
    .form-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 50px;
      gap: 40px;
      background-color: #f8f9fa;
    }

    .form-box form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      background: #fff;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .form-box form div {
      display: flex;
      flex-direction: column;
    }

    .form-box label {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .form-box input, 
    .form-box select {
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
    }

    .form-box button {
      grid-column: 1 / span 2;
      padding: 14px;
      background-color: #133A49;
      color: white;
      font-weight: 600;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
    }

    .form-box button:hover {
      background-color: #0f2d38;
    }

    .checkbox-area {
      grid-column: 1 / span 2;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-top: 15px;
      background-color: #f9fafb;
      padding: 15px 18px;
      border-radius: 10px;
      border: 1px solid #ddd;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .checkbox-area input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 3px;
      accent-color: #133A49;
      cursor: pointer;
    }

    .checkbox-area p {
      font-size: 14px;
      color: #444;
      line-height: 1.7;
      text-align: justify;
      margin: 0;
    }

    .checkbox-area a {
      color: #133A49;
      text-decoration: underline;
      font-weight: 600;
    }

    .checkbox-area a:hover {
      text-decoration: none;
      color: #0f2d38;
    }

  
    .form-text {
      display: flex;
      flex-direction: column;
      justify-content: flex-start; 
      background-color: #f0f8fa;
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .form-text h2 {
      font-size: 2rem;
      color: #133A49;
      margin-bottom: 20px;
    }

    .form-text p {
      font-size: 16px;
      line-height: 1.8;
      color: #444;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .form-section {
        grid-template-columns: 1fr;
        padding: 30px;
      }

      .form-box form {
        grid-template-columns: 1fr;
      }

      .checkbox-area {
        flex-direction: column;
        align-items: flex-start;
      }

      .heroform h1 {
        font-size: 2rem;
      }
    }
