body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f5f5;
}

/* NAVBAR */
.navbar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 70px;
}

.navbar a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.logo {
  font-weight: 800;
}

.cta-btn {
  background: #1f6fa5;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(31,111,165,0.95), rgba(31,111,165,0.95)),
              url('https://images.unsplash.com/photo-1552664730-d307ca884978');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 70px;
}

/* LAYOUT */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.left {
  width: 50%;
}

.left h1 {
  font-size: 56px;
  font-weight: 800;
}

.left p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
}

/* FORM */
.right {
  width: 420px;
  background: rgba(255,255,255,0.12);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.right input,
.right textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  color: white;
  outline: none;
}

.right button {
  width: 100%;
  margin-top: 20px;
  background: #c6ff00;
  padding: 14px;
  border: none;
  font-weight: 700;
  border-radius: 25px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
  text-align: center;
}

.stats h2 {
  color: #c6ff00;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left, .right {
    width: 100%;
  }

  .left h1 {
    font-size: 32px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}