#contacts-block img {
  padding: 10px;
  width: 80%;
}

#contacts-block .contact-items,
#contact-view .contact-items {
  /*background: var(--primary);
    color: white;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 2px solid #ffffff;*/
  background: #179f7952;

  background: #ffffff52;
  color: white;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 2px solid #ffffff;
}

#contacts-block h4,
#contact-view h4 {
  /*font-size: 1rem;
    color: #106e54;
    padding: 5px 5px 5px 5px;*/

  font-size: 0.9rem;
  color: #0f5a45;
  padding: 7px 8px 7px 14px;
}

#contacts-block .contact-email,
#contact-view .contact-email {
  padding-bottom: 10px;
}

#contacts-block .button,
#contact-view .button {
  line-height: 1.6;
  width: 150px;
  border: 2px solid #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: unset;
  color: var(--primary) !important;
  box-shadow: 0 0 4px 1px var(--primary) !important;
  line-height: 1.2;
  text-align: center;
}

#contacts-block .button:hover,
#contact-view .button:hover {
  background-color: var(--primary);
  color: white !important;
  border: 2px solid var(--primary);
}

#contact-view .block-title {
  display: none;
}

#contact-view .dark-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-view fieldset {
  border: unset;
}

#contact-view #block-feedback-form {
  background: var(--primary);
  padding: 20px 20px 15px 40px;
  border-radius: 10px;
  color: white;
  background: var(--border);
  color: black;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--pantone-152) !important;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #5a7de4;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
