:root {
  --primary: #871c33;
  --primary-light: #a02340;
  --primary-dark: #6e1629;
  --background: #fdf7f8;
  --surface: #ffffff;
  --text-primary: #2d1920;
  --text-secondary: #614448;
  --border: #e8dfe1;
}

#visa-check-app {
  max-width: 800px;
  margin: 2rem auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form-container {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.question {
  margin-bottom: 2rem;
}

.question h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.option {
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--surface);
  transition: all 0.2s;
}

.option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.option.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.navigation-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-button {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.nav-button.next {
  background: var(--primary);
  color: white;
}

.nav-button.prev {
  background: var(--background);
  border: 2px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group label {
  font-weight: 500;
}

.input-group input {
  padding: 0.8rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

.error-message {
  color: var(--primary);
  font-size: 0.9rem;
}

.results {
  margin-top: 2rem;
}

.result {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .form-container {
    padding: 1rem;
    margin: 1rem;
  }
}
