 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --blue: #2563eb;
     --blue-dark: #1e4fc2;
     --orange: #ff6a00;
     --text: #1a1a1a;
     --muted: #6b7280;
     --bg: #f5f7fa;
     --white: #ffffff;
     --border: #e5e7eb;
 }

 body {
     font-family: 'Inter', sans-serif;
     color: var(--text);
     background: var(--bg);
     min-height: 100vh;
 }

 /* NAV */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  z-index: 100;
  background: #0a2540;
}

 .nav-container {
     max-width: 1200px;
     margin: auto;
     padding: 0 40px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 .brand-name {
     color:#ffffff;
     font-size: 18px;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 800;
     font-size: 17px;
     color: white;
     letter-spacing: 1px;
     text-decoration: none;
 }
 a.logo {
  text-decoration: none;
}
 
 .logo-icon {
     width: 36px;
     height: 36px;
     position: relative;
     display: flex;
 }

 .logo-icon svg {
     width: 36px;
     height: 36px;
 }

 .nav-links {
     display: flex;
     gap: 28px;
     align-items: center;
 }

 .nav-links a {
     text-decoration: none;
     color: white;
     font-weight: 600;
     font-size: 15px;
     
 }

 .cta-nav {
     background: var(--orange);
     color: white !important;
     padding: 10px 20px;
     border-radius: 6px;
 }

 /* HERO */
 .hero {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 50%, #7287a1 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}


.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 60px 40px 50px;
  position: relative;
  z-index: 2;
  color: white;
}

 .hero-content h1 {
     font-size: 38px;
     font-weight: 800;
     margin-bottom: 12px;
 }

 .hero-content p {
     font-size: 16px;
     line-height: 1.6;
     opacity: 0.9;
     max-width: 440px;
 }

 /* MAIN CONTENT */
 .page-body {
     max-width: 1200px;
     margin: 40px auto 80px;
     padding: 0 40px;
     display: grid;
     grid-template-columns: 1fr 340px;
     gap: 30px;
     align-items: start;
 }

 /* FORM CARD */
 .form-card {
     background: white;
     border-radius: 16px;
     padding: 36px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
 }

 .form-card h2 {
     font-size: 24px;
     font-weight: 800;
     margin-bottom: 28px;
     color: var(--text);
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     font-size: 14px;
     font-weight: 600;
     color: var(--text);
     margin-bottom: 7px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 11px 14px;
     border: 1.5px solid var(--border);
     border-radius: 8px;
     font-size: 15px;
     font-family: 'Inter', sans-serif;
     color: var(--text);
     background: white;
     outline: none;
     transition: border 0.2s;
     appearance: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--blue);
 }

 .form-group textarea {
     resize: vertical;
     min-height: 100px;
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .input-icon-wrap {
     position: relative;
 }

 .input-icon-wrap input {
     padding-right: 40px;
 }

 .input-icon {
     position: absolute;
     right: 12px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--muted);
     pointer-events: none;
     font-size: 16px;
 }

 .select-wrap {
     position: relative;
 }

 .select-wrap::after {
     content: "▾";
     position: absolute;
     right: 14px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--muted);
     pointer-events: none;
     font-size: 13px;
 }

 .btn-submit {
     width: 100%;
     background: var(--blue);
     color: white;
     border: none;
     padding: 16px;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 700;
     font-family: 'Inter', sans-serif;
     cursor: pointer;
     margin-top: 8px;
     transition: background 0.2s;
 }

 .btn-submit:hover {
     background: var(--blue-dark);
 }

 .form-footer {
     text-align: center;
     margin-top: 16px;
     font-size: 14px;
     color: var(--muted);
 }

 .form-footer a {
     color: var(--text);
     font-weight: 700;
     text-decoration: none;
 }

 /* SIDE CARD */
 .side-card {
     background: #2c4a7a;
     background: linear-gradient(145deg, #1e3a5f 0%, #2c5282 100%);
     border-radius: 16px;
     padding: 32px;
     color: white;
 }

 .side-card h3 {
     font-size: 22px;
     font-weight: 800;
     line-height: 1.35;
     margin-bottom: 24px;
 }

 .side-card ul {
     list-style: none;
 }

 .side-card li {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 14px;
 }

 .side-card li .check {
     color: #86efac;
     font-size: 16px;
 }

 .logo img {
     width: 70px;
 }

 .success-message {
  background: #f0f9ff;
  border: 1px solid #c7e0f4;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
}

.success-message h3 {
  color: #1e3c72;
  font-size: 22px;
  margin-bottom: 10px;
}

.success-message p {
  color: #374151;
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    order: 2;
    margin-right: 20px;
  }

  .nav-container {
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .logo { order: 1; }

  .nav-links {
    display: none;
    flex-direction: column;
    order: 3;
    width: 100%;
    background: #0a2540;
    padding: 16px 20px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .page-body {
    grid-template-columns: 1fr;
    padding: 0 20px;
    margin: 20px auto 40px;
  }

  .side-card {
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 20px 40px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}
