.wpcf7 p {
  margin: 0;
}

.wpcf7 br {
  display: none;
}

.contact-form .max-width-container {
  background-color: #9b9b9b1f;
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .section-title {
  font-size: 32px;
  font-weight: 500;
  color: #3b2417;
  margin-bottom: clamp(20px, 3vw, 30px);
  line-height: 1.2;
}

.contact-form .section-subtitle {
  font-size: 16px;
  color: #3b2417;
  margin-bottom: 24px;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
}

.contact-form .form-label {
  font-size: 16px;
  color: #3b2417;
  margin-bottom: 8px;
}

.contact-form .required {
  color: #dc3545;
  margin-left: 3px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #3b2417;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(0, 0, 0, 0.19);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.contact-form .form-control::placeholder {
  color: #aaa;
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form .submit-btn {
  color: white;
  font-weight: 500;
  font-size: 15px;
  box-shadow: rgba(107, 142, 35, 0.4) 0px 4px 15px;
  background: #f59120;
  padding: 12px 28px;
  border-radius: 5px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  width: 100%;
  transition: 0.3s;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(107, 142, 35, 0.5) 0px 6px 20px;
}

.contact-form .contact-info-item {
  margin-bottom: 40px;
}

.contact-form .contact-icon {
  width: 40px;
  height: 40px;
  background: #f59120;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-form .contact-icon i {
  color: white;
  font-size: 1.1rem;
}

.contact-form .contact-info-title {
  font-size: 16px;
  font-weight: 500;
  color: #3b2417;
  margin-bottom: 8px;
}

.contact-form .contact-info-text {
  font-size: 16px;
  color: #3b2417;
}

.contact-form .contact-info-link {
  font-size: 16px;
  color: #3b2417;
  transition: color 0.3s ease;
}

.contact-form .contact-info-link:hover {
  color: black;
}

.contact-form .form-heading {
  color: #3b2417;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .contact-form .submit-btn {
    width: 100%;
  }
}