.contact-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact-banner:hover {
  opacity: 0.8;
}

.contact-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #ED6B69;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-banner-text {
  color: #21272E;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.contact-modal.is-open {
  display: block;
}

.contact-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.contact-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #efefef;
  border-radius: 10px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-modal-header-success {
  display: flex;
  justify-content: end;
  margin-bottom: 24px;
}

.contact-modal-header {
  display: flex;
  justify-content: space-between;
}
.contact-modal-header h3 {
  font-size: 24px;
}

.contact-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.contact-modal-close:hover {
  background: #F6F6F7;
  border-radius: 10px;
}

.contact-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.contact-modal-actions button {
  width: 100%;
}

.contact-modal-success {
  text-align: center;
}
.contact-modal-success p {
  padding-left: 10%;
  padding-right: 10%;
}
.contact-modal-success button {
  margin-top: 10px;
}

/*# sourceMappingURL=styles.css.map */
