.cc--contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.c--contact-form .contact-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.c--contact-form .form-wrapper {
  flex: 1;
  min-width: 300px;
}

.c--contact-form form {
  padding: 0 30px;
  border-radius: 10px;
  font-family: 'Palanquin', sans-serif;
}

.texto-campos-obligatorios {
  text-align: end;
  font-size: 12px;
  font-style: italic;
}

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

.c--contact-form .fi--form-item {
  flex: 1;
  margin-bottom: 20px;
}

.c--contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-family: 'Palanquin', sans-serif;
}

.c--contact-form .form-text,
.c--contact-form .form-textarea {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5715;
  position: relative;
  width: 100%;
  border: 0;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #EEEEEE;
  width: 100%;
  border: 0;
  text-overflow: ellipsis;
  font-family: 'Palanquin', sans-serif;
}

.c--contact-form .form-text {
  height: 3.125rem;
  border-radius: 2.5rem;
}

.c--contact-form .form-textarea {
  resize: none;
  min-height: 6rem;
  border-radius: 1rem;
  padding: 1rem;
}

.c--contact-form .form-checkbox {
  display: flex;
  align-items: flex-start;
}

.c--contact-form .form-checkbox input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.c--contact-form .form-checkbox label {
  color: #555;
  font-size: 14px;
  margin: 0;
}

.c--contact-form .form-checkbox label a {
  color: inherit;
  text-decoration: underline;
}

.c--contact-form .f--input-submit {
  text-align: right;
}

.c--contact-form .button.js-form-submit {
  color: #0044b5;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Palanquin', sans-serif;
}

.c--contact-form .contact-info {
  flex: 1;
  max-width: 350px;
}

.c--contact-form .location-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #FBB83F;
}

.c--contact-form .location-title {
  color: #0044B5;
  margin-top: 0;
  font-family: 'Palanquin', sans-serif;
  font-weight: 700;
}

.c--contact-form .contact-details {
  margin-top: 20px;
}

.c--contact-form .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.c--contact-form .icon {
  margin-right: 15px;
  color: #0044B5;
}

.c--contact-form .text {
  color: #626262;
}

.c--contact-form .text a {
  color: white;
  text-decoration: none;
}

.c--contact-form .map {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.c--contact-form .map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .c--contact-form form {
    padding: 0;
  }

  .c--contact-form .form-wrapper {
    min-width: auto;
    width: 100%;
  }

  .c--contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .c--contact-form .contact-info {
    max-width: 100%;
    width: 100%;
  }

  .c--contact-form .contact-form-wrapper {
    flex-direction: column;
  }
}