:root {
      --gold: #d8b56d;
      --gold-light: #f4d994;
      --gold-dark: #9b7734;
      --black: #070707;
      --dark: #111111;
      --charcoal: #1b1b1b;
      --cream: #f5f0e8;
      --soft-cream: #fbf7f0;
      --white: #ffffff;
      --muted: #8d877e;
      --text: #2d2924;
      --border: rgba(216, 181, 109, 0.28);
      --danger: #c2410c;
      --success: #15803d;
      --shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
      --radius: 18px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Georgia, "Times New Roman", serif;
      background: var(--soft-cream);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }

    .page {
      width: 100%;
      overflow: hidden;
    }

    .hero {
      min-height: 680px;
      background:
        linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.74) 0%,
          rgba(0, 0, 0, 0.42) 45%,
          rgba(0, 0, 0, 0.88) 100%
        ),
        url("assets/hero-kidtrepreneur.webp");
      background-size: cover;
      background-position: center;
      color: var(--white);
      position: relative;
      padding: 28px 20px 0;
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.88);
    }

    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      transition: 0.2s ease;
    }

    .nav a:hover {
      color: var(--gold-light);
    }


    .nav.logo-only {
      justify-content: center;
    }

    .logo {
      text-align: center;
      color: var(--white);
      letter-spacing: 1px;
      font-weight: 700;
      line-height: 1;
      font-size: 20px;
    }

    .logo span {
      display: block;
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 5px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .hero-content {
      max-width: 920px;
      margin: 138px auto 0;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .rating {
      color: var(--gold-light);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      letter-spacing: 3px;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(42px, 7vw, 82px);
      line-height: 1.04;
      color: #fff;
      letter-spacing: -1.8px;
      margin-bottom: 22px;
      text-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    }

    .hero-subtitle {
      max-width: 790px;
      margin: 0 auto 28px;
      font-family: Arial, Helvetica, sans-serif;
      color: rgba(255, 255, 255, 0.9);
      font-size: 17px;
      line-height: 1.7;
    }

    .hero-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #16120b;
      text-decoration: none;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 800;
      border-radius: 4px;
      padding: 15px 22px;
      box-shadow: 0 18px 40px rgba(216, 181, 109, 0.28);
      transition: 0.2s ease;
    }

    .hero-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(216, 181, 109, 0.38);
    }

    .arrow-box {
      width: 27px;
      height: 27px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.75);
      color: #1b1b1b;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }

    .quick-details {
      max-width: 980px;
      margin: 105px auto 0;
      background: rgba(35, 35, 35, 0.82);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 9px;
      padding: 18px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
      font-family: Arial, Helvetica, sans-serif;
    }

    .quick-card {
      min-height: 78px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 5px;
      padding: 14px 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .quick-card span {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      color: var(--gold-light);
      margin-bottom: 5px;
      font-weight: 700;
    }

    .quick-card strong {
      color: #fff;
      font-size: 14px;
      line-height: 1.35;
    }

    .intro-wrap {
      background: var(--soft-cream);
      padding: 76px 20px 34px;
    }

    .intro {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 54px;
      align-items: center;
    }

    .intro-image {
      min-height: 430px;
      border-radius: 14px;
      overflow: hidden;
      background:
        linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.18)),
        url("assets/kids-business-meeting.jpg");
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      border: 8px solid #fff;
    }

    .eyebrow {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--gold-dark);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .form-header .eyebrow {
      color: var(--gold-light);
    }

    .intro h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.05;
      color: #17130d;
      letter-spacing: -1.3px;
      margin-bottom: 20px;
    }

    .intro p {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      color: #5f584f;
      margin-bottom: 16px;
      line-height: 1.85;
    }

    .criteria {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 13px;
      margin-top: 26px;
    }

    .criteria-item {
      background: #111;
      color: var(--gold-light);
      border: 1px solid rgba(216, 181, 109, 0.45);
      border-radius: 6px;
      padding: 16px 12px;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-weight: 800;
    }

    .form-section-wrap {
      background:
        linear-gradient(180deg, var(--soft-cream) 0%, #efe8dc 100%);
      padding: 42px 20px 90px;
    }

    .form-card {
      max-width: 1060px;
      margin: 0 auto;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(45, 37, 24, 0.18);
      border: 1px solid rgba(216, 181, 109, 0.32);
    }

    .form-header {
      background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.82), rgba(40, 31, 17, 0.78)),
        url("assets/young-entrepreneur.jpg");
      background-size: cover;
      background-position: center;
      color: white;
      padding: 42px 42px 36px;
      border-bottom: 3px solid var(--gold);
    }

    .form-header h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .form-header p {
      font-family: Arial, Helvetica, sans-serif;
      color: rgba(255, 255, 255, 0.86);
      max-width: 780px;
      font-size: 15px;
      line-height: 1.75;
    }

    form {
      padding: 42px;
    }

    .section {
      padding-bottom: 36px;
      margin-bottom: 38px;
      border-bottom: 1px solid rgba(216, 181, 109, 0.28);
    }

    .section:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 20px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .section-number {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #17130d;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 900;
      flex-shrink: 0;
      box-shadow: 0 10px 25px rgba(216, 181, 109, 0.32);
    }

    .section-title h3 {
      color: #15120d;
      font-size: 27px;
      line-height: 1.1;
      letter-spacing: -0.45px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: #211b13;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }

    .required {
      color: var(--danger);
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(40, 31, 17, 0.18);
      border-radius: 6px;
      padding: 15px 15px;
      font-size: 15px;
      color: #211b13;
      background: #fbfaf7;
      transition: 0.2s ease;
      font-family: Arial, Helvetica, sans-serif;
    }

    input::placeholder,
    textarea::placeholder {
      color: #aaa196;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: var(--gold-dark);
      box-shadow: 0 0 0 4px rgba(216, 181, 109, 0.18);
      background: #fff;
    }

    textarea {
      min-height: 125px;
      resize: vertical;
    }

    .helper {
      color: #7d7469;
      font-size: 12px;
      line-height: 1.45;
    }

    .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 6px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .checkbox-card {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 13px;
      align-items: flex-start;
      padding: 18px;
      border: 1px solid rgba(216, 181, 109, 0.38);
      border-radius: 8px;
      background: linear-gradient(180deg, #fffdf8, #fbf7ef);
    }

    .checkbox-card input {
      width: 18px;
      height: 18px;
      margin-top: 4px;
      accent-color: var(--gold-dark);
      box-shadow: none;
    }

    .checkbox-card label {
      text-transform: none;
      letter-spacing: 0;
      line-height: 1.6;
      font-size: 14px;
      color: #443b31;
    }

    .submit-area {
      background:
        linear-gradient(135deg, rgba(17,17,17,0.96), rgba(45,34,17,0.94));
      border: 1px solid rgba(216, 181, 109, 0.4);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .submit-area p {
      color: rgba(255,255,255,0.76);
      max-width: 640px;
      font-size: 14px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.7;
    }

    button {
      border: none;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #15120d;
      font-weight: 900;
      font-size: 14px;
      padding: 16px 28px;
      border-radius: 4px;
      cursor: pointer;
      box-shadow: 0 14px 34px rgba(216, 181, 109, 0.34);
      transition: 0.2s ease;
      min-width: 230px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-family: Arial, Helvetica, sans-serif;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(216, 181, 109, 0.44);
    }

    .success-message {
      display: none;
      margin-top: 22px;
      padding: 18px;
      border-radius: 8px;
      background: rgba(21, 128, 61, 0.08);
      border: 1px solid rgba(21, 128, 61, 0.24);
      color: var(--success);
      font-weight: 800;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }

    .footer-note {
      text-align: center;
      color: #74695d;
      font-size: 13px;
      margin-top: 30px;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.7;
    }

    @media (max-width: 980px) {
      .intro {
        grid-template-columns: 1fr;
      }

      .intro-image {
        min-height: 360px;
      }

      .quick-details {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 70px;
      }

      .nav-left,
      .nav-right {
        display: none;
      }

      .nav {
        justify-content: center;
      }
    }

    @media (max-width: 720px) {
      .hero {
        min-height: auto;
        padding-bottom: 30px;
      }

      .hero-content {
        margin-top: 82px;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .quick-details {
        grid-template-columns: 1fr;
        margin-top: 55px;
      }

      .intro-wrap {
        padding-top: 52px;
      }

      .criteria {
        grid-template-columns: 1fr;
      }

      .form-header,
      form {
        padding: 28px 20px;
      }

      .grid {
        grid-template-columns: 1fr;
      }

      .section-title {
        align-items: flex-start;
      }

      .section-title h3 {
        font-size: 23px;
      }

      .submit-area {
        align-items: stretch;
      }

      button {
        width: 100%;
      }
    }