.container {
  max-width: 1340px;
  padding: 0 15px;
  margin: 0 auto;
}

.contact-section {

}

.contact-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control, .form-select {
  border-radius: 20px;
  border: none;
  height: 50px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
}
.form-control:focus, .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: none;
}

.privacy-notice {
  font-size: 0.85rem;
  text-align: center;
  margin: 1rem 0;
  opacity: 0.9;
}

.btn-submit {
  background-color: #ffffff;
  color: #4b60d5;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 1.75rem;
  }
  .row {
    flex-direction: column;
  }
  .col-md-3,
  .col-md-6 {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */