.asa9-request-form-container {
  width: 100%;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
  padding: 0 20px;
}

.asa9-form-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.asa9-form-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.asa9-form-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #444;
}

.asa9-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.asa9-form-group {
  flex: 1;
  margin-bottom: 20px;
}

.asa9-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.asa9-form-group input[type="text"],
.asa9-form-group input[type="email"],
.asa9-form-group input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  background-color: #f5f2ed;
  border: 1px solid #dcd9d1;
  border-radius: 4px;
  font-size: 15px;
}

.asa9-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 5px;
}

.asa9-radio-group label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.asa9-agreement-section {
  margin-top: 50px;
  margin-bottom: 30px;
}

.asa9-agreement-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.asa9-agreement-text {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.asa9-agreement-text::-webkit-scrollbar {
  width: 8px;
}

.asa9-agreement-text::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.asa9-agreement-text::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.asa9-agreement-text::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.asa9-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.asa9-submit-btn {
  background-color: #1a1a1a;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.asa9-submit-btn:hover {
  background-color: #333;
}

#asa9-form-response {
  margin-top: 20px;
  font-weight: 600;
  padding: 15px;
  border-radius: 4px;
  display: none;
}

#asa9-form-response.success {
  background-color: #e6f7e6;
  color: #2e7d32;
  display: block;
}

#asa9-form-response.error {
  background-color: #fbe9e7;
  color: #d84315;
  display: block;
}

@media (max-width: 600px) {
  .asa9-form-row {
    flex-direction: column;
    gap: 0;
  }
}
