* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0 auto;
  padding: 0;
}

h1 {
  line-height: 1;
  vertical-align: middle;
  word-break: break-word;
  font-size: 48px;
}

p {
  font-size: 16px;
  font-weight: normal;
  color: rgb(41, 41, 41);
}

.container {
  margin: 80px auto;
  max-width: 800px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(244, 145, 0, 0.3);
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: rgb(244, 145, 0);
  transition: width 0.3s ease;
  transition-behavior: smooth;
}

.logo {
  font-family: "object-fit: cover;";
  max-width: 100%;
  width: 360px;
  margin: 0 auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: border-radius 0.5s;
}

.form-container {
  padding: 2rem;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 600;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.option-button {
  background: rgb(244, 145, 0);
  color: white;
  border: none;
  padding: 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.1em;
}

.option-button:hover {
  background: #d18b2e;
}

.option-button.selected {
  color: rgb(244, 145, 0);
  border: 4px solid rgb(244, 145, 0);
  background-color: white;
  box-shadow: rgb(0 0 0 / 66%) 0px 2px 11px 0px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.8);
  background-color: rgb(255, 255, 255);
  border-color: rgb(244, 145, 0);
  border-radius: 25px;
  border-width: 1px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px inset;
  padding: 20px;
}

.form-control:focus {
  border-color: rgb(244, 145, 0);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
}

.checkbox-group {
  margin: 2rem 0;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-item > input {
  -webkit-appearance: none;
  background-color: transparent;
  border-color: rgb(244, 145, 0);
  border-radius: 4px;
  border-style: solid;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  content: "";
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 30px;
  margin-right: 20px;
  outline: none;
  position: relative;
  width: 30px;
}

.checkbox-item input[type="checkbox"]:checked:after {
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 12px;
  left: 9px;
  position: absolute;
  top: 4px;
  transform: rotate(45deg);
  width: 6px;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-item label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.submit-button {
  width: 200px;
  background: rgb(244, 145, 0);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background: #d18b2e;
  transition: background-color 0.3s, transform 0.3s;
  transform: scale(1.05);
}

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

  .form-container {
    padding: 1rem;
  }
}
