body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

.banner-container {
  background: linear-gradient(to right, #333, #a85);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.banner-text {
  color: white;
  padding: 20px;
  flex: 1;
}

.banner-text h2 {
  margin-top: 0;
  font-size: 24px;
}

.banner-text p {
  font-size: 14px;
  margin-bottom: 20px;
}

.banner-img {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.banner-img img {
  max-width: 250px;
  position: relative;
  z-index: 2;
}

.teal-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: #1cb5b0;
  border-radius: 50%;
  z-index: 1;
}

.learn-more {
  display: inline-block;
  background-color: white;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;
}

h1 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

label {
  font-weight: normal;
  margin-bottom: 5px;
  font-size: 14px;
}

input, select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  font-size: 13px;
  line-height: 1.5;
}

.submit-btn {
  background-color: #222;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  width: 200px;
  align-self: center;
}

.footer-note {
  font-size: 10px;
  color: #888;
  text-align: center;
  margin-top: 25px;
}

.teal-checkbox {
  accent-color: #1cb5b0;
  width: 18px;
  height: 18px;
}

.phone-hint {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.response-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.response-message.success {
  background-color: #e6ffed;
  color: #256029;
  border: 1px solid #b6e2c4;
}

.response-message.error {
  background-color: #ffe6e6;
  color: #b50000;
  border: 1px solid #f5a3a3;
}
