* { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: white;
      background: #ffffff;
    }

    .hero {
      min-height: 100vh;
      background: url("./assets/images/home.png") no-repeat center top;
      background-size: cover;
      background-position: center center;
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 32px 20px 40px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.58), rgba(0,0,0,0.08));
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 260px;
      padding: 16px 28px;
      border-radius: 999px;
      background: #2473ad;
      color: #ffffff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: 0 14px 35px rgba(0,0,0,0.25);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .cta-btn:hover {
      background: #1d3346;
      transform: translateY(-2px);
    }

    .form-section {
      background: #ffffff;
      color: #111827;
      padding: 70px 20px 80px;
    }

    .form-wrap {
      max-width: 560px;
      margin: 0 auto;
    }

    .form-wrap h2 {
      margin: 0 0 10px;
      text-align: center;
      font-size: 2rem;
      color: #111827;
    }

    .form-wrap p {
      margin: 0 0 28px;
      text-align: center;
      color: #6b7280;
      line-height: 1.5;
    }

    .form-card {
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 18px 45px rgba(17,24,39,0.08);
    }

    form {
      display: grid;
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    label {
      font-size: 0.94rem;
      font-weight: bold;
      color: #374151;
    }

    input {
      width: 100%;
      padding: 14px 15px;
      border-radius: 12px;
      border: 1px solid #d1d5db;
      font-size: 0.98rem;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input:focus {
      border-color: #2473ad;
      box-shadow: 0 0 0 4px rgba(36, 115, 173, 0.14);
    }

    .submit-btn {
      margin-top: 6px;
      padding: 16px;
      border: none;
      border-radius: 14px;
      background: #2473ad;
      color: white;
      font-weight: bold;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .submit-btn:hover {
      background: #1d3346;
      transform: translateY(-1px);
    }

    @media (max-width: 640px) {
      .hero {
        background-position: center top;
        padding-bottom: 28px;
      }

      .cta-btn {
        width: 100%;
        min-width: auto;
      }

      .form-section {
        padding: 50px 16px 60px;
      }

      .form-wrap h2 {
        font-size: 1.7rem;
      }

      .form-card {
        padding: 20px;
        border-radius: 18px;
      }
    }