:root {
  --primary: #1F3A5F;
  --secondary: #64748B;
  --background: #F5F7FA;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--primary);
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #E5E7EB;
}

.nav-content {
  height: 70px;
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
}

.logo span {
  color: var(--secondary);
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 25px;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 500;
}

/* Form Card */
.form-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(31, 58, 95, 0.08);
}

.form-card h2 {
  margin-bottom: 8px;
}

.form-card p {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

form input,
form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #CBD5E1;
  font-size: 0.95rem;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: var(--primary);
}

form button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 58, 95, 0.15);
}

.form-card small {
  display: block;
  margin-top: 12px;
  color: var(--secondary);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  margin-top: 80px;
  padding: 30px 0;
  border-top: 1px solid #E5E7EB;
  background: var(--white);
}

.footer-content {
  text-align: center;
  color: var(--secondary);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}
