:root {
  --primary: #635bff;
  --secondary: #a78bfa;
  --dark: #0f172a;
  --gray: #475569;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  line-height: 1.6;
  text-align: center;
}

a {
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.button {
  font-weight: 600;
  display: inline-block;
  transition: transform .2s, box-shadow .2s;
}

.button:hover {
  opacity: 1;
  text-decoration: underline;
  transform: translateY(-2px);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.wave-divider {
  display: block;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: .95rem;
  color: var(--gray);
}

.benefits-grid {
  display: grid;
  margin: 0 auto;
  gap: 1.2rem;
  max-width: 960px;
  grid-template-columns: repeat(3, 1fr);
}

#header {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

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

  #header {
    padding: 1rem 0;
  }
}

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

.benefit-box {
  border-radius: 10px;
  padding: 1.5rem;
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-box:hover {
  transform: scale(1.02);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.benefit-box p {
  line-height: 1.4;
  font-size: .9rem;
}

.benefit-icon {
  margin: 0 auto;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 14px #635bff33;
  color: white;
  font-size: 26px;
}

h3 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.form {
  box-shadow: 0 8px 24px #0000001f;
  border-radius: 8px; margin: 0 auto;
  text-align: left;
  padding: 2rem;
  margin-top: 110px;
  margin-bottom: 200px;
}

.form h1 {
  font-size: 1.7rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: .75rem;
}

.form p {
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

.form .field {
  display: flex;
  flex: 1 1;
  flex-direction: column;
}

.form .row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 700px) {
    .form .row {
        flex-direction: column;
    }
}

.form label {
  color: #333;
  font-weight: 600;
  margin-bottom: .3rem;
}

.required {
  color: #e53e3e;
}

.form input, select {
  border: 1px solid #0000001a;
  border-radius: 5px;
  font-size: .95rem;
  margin-bottom: .5rem;
  padding: .75rem;
  transition: border-color .2s;
}

.form .row input {
  width: 90%;
}

.form input[type=checkbox] {
  width: 20px;
  height: 20px;
}

.form button {
  background: var(--primary); 
  color: white;
  width: 100%;
  font-size: 1rem;
  padding: .75rem;
  border-radius: 5px;
  transition: transform .3s, background-color .3s;
}

.form button:hover {
  background: #5148d5;
  transform: translateY(-2px);
}

.toc a {
  color: var(--primary);
  font-weight: 600;
}
