.ambassador-form-section {
  padding: 4rem 1rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  max-width: 700px;
  width: 100%;
}

.form-header h2 {
  color: #024228;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-header p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-text {
  font-weight: 500;
}

.contact-text a {
  color: #024228;
  text-decoration: none;
  font-weight: 700;
}

.ambassador-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 700;
  color: #024228;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.required {
  color: #d97706;
  margin-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f9fafb;
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #024228;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(2, 66, 40, 0.1);
}

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

.checkbox-item {
  font-weight: 400;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #024228;
}

.recaptcha-box {
  margin: 2rem 0;
  width: fit-content;
}

.recaptcha-placeholder {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  padding: 15px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #555;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.submit-btn {
  background-color: #4f7e2a;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 150px;
}

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

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