<style>
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f8f6;
      margin: 0;
      padding: 0;
    }

    .banner {
      background: url('https://via.placeholder.com/1200x200?text=Commonwealth+Agriculture+Loan+Program') no-repeat center center;
      background-size: cover;
      height: 200px;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      background: none;
      padding: 40px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-top: -50px;
      border-radius: 10px;
    }

    h1 {
      text-align: center;
      color: #2e6b3b;
      margin-bottom: 20px;
    }

    h2 {
      color: #2e6b3b;
      margin-top: 40px;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: 600;
    }

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 6px;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }

    input[type="checkbox"] {
      margin-right: 8px;
    }

    .checkbox-group {
      margin-top: 10px;
    }

    .form-section {
      margin-bottom: 30px;
    }

    .declaration {
      margin-top: 20px;
    }

    .signature-section {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    button {
      background-color: #2e6b3b;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 20px;
    }

    button:hover {
      background-color: #24562f;
    }

    .footer {
      text-align: center;
      margin: 40px 0 20px;
      font-size: 14px;
      color: #888;
    }
 