.contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-person {
  margin-bottom: 15px;
}

.contact-person .name {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-person .title {
  margin-bottom: 5px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-form .form-control {
  margin-bottom: 15px;
}

.contact-form textarea {
  resize: none;
  height: 150px;
}

.btn-submit {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 10px 25px;
}

.btn-submit:hover {
  background-color: #e64958;
  color: #fff;
  border: none;
  padding: 10px 25px;
}

.btn-submit-disabled {
  background-color: #cccccc !important;
  color: #888888 !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  pointer-events: none;
}

.captcha-container {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.captcha-refresh {
  background-color: #ff9800;
  color: white;
  border: none;
}

.captcha-refresh:hover {
  background-color: #ec9e29;
  color: #ffffff;
  border: none;
}

.phone-input {
  display: flex;
}

.phone-input .country-code {
  width: 80px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #ced4da;
  border-right: none;
  border-radius: 0.25rem 0 0 0.25rem;
}

.phone-input .country-code img {
  width: 24px;
  margin-right: 5px;
}

.phone-input .form-control {
  border-radius: 0 0.25rem 0.25rem 0;
}

.map-container {
  height: 50%;
  min-height: 400px;
}

.privacy-text {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .map-container {
    margin-top: 20px;
    height: 300px;
  }
}