/* Train With Us Page */

/* Global Reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Main Section Styling */
.get-started {
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  flex: 1;
}

.cta-section h1 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #555;
  line-height: var(--body-line-height);
  margin-bottom: 2rem;
}

/* Form Styling */
.get-started-form {
  margin: 2rem auto;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--default-padding);
  margin-bottom: 2rem;
}

.input-group input {
  padding: 10px;
  width: 40%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  line-height: var(--body-line-height);
}

.class-selection {
  margin-bottom: 2rem;
}

.class-selection label {
  margin: 0 10px;
  font-size: 1rem;
  color: var(--dark-gray);
}

.class-selection input {
  margin-right: 5px;
}

/* Button Styling */
button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .input-group {
      flex-direction: column;
      gap: 1.5rem;
  }

  .input-group input {
      width: 100%;
  }

  iframe {
      width: 100%;
      height: 300px;
  }
}
