@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #eef3fc);
  font-size: 0.95rem;
  color: #2c2c2c;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  border: 2px solid #444;
  border-radius: 16px;
  background-color: #444;
  color: white;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero p {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.cta {
  background: #444 !important;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  display: inline-block;
  transition: background 0.3s ease;
  width: auto;
  text-align: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta,
button.cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta:hover {
  background: #222 !important;
}

.section-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.section-card h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: 500;
}

input,
textarea,
select {
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background-color: #fafafa;
  margin-top: 0.3rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #6c63ff;
  background-color: #fff;
}

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

.phone-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.required-star {
  color: red;
}

.registration-note {
  text-align: center;
  margin-top: 2rem;
  color: black;
  font-size: 0.95rem;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid #eee;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
    border: none;
    border-radius: 0;
  }

  .section-card {
    padding: 1rem;
  }

  input,
  textarea,
  select {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta {
    width: 100%;
    padding: 1rem;
  }
}
