.contact-container-contact {
  position: fixed;
  top: 630px; /* אפשר לשנות בהתאם למיקום הכפתור */
  left: 142px; /* אפשר לשנות בהתאם */
  z-index: 9999;
}

.button-container-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  width: 300px;
  height: 70px;
  background: #D8CC95;
  border-radius: 25px;
  cursor: pointer;
  justify-content: space-around;
  position: relative;
}

.lang-de .button-container-contact {
  width: 350px; /* גרסה לגרמנית */
}

.button-contact {
  font-family: var(--font--verla);
  font-weight: 500;
  font-size: 24px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-right: 10px;
}

.img-contact {
  width: 40px;
  margin-left: 22px;
}

.message-form {
  position: absolute; /* יחסית ל-button-container-contact */
  bottom: 100%;       /* מעל הכפתור */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  width: 350px;  
  max-height: 70vh;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  z-index: 10000;
}

.contact-textarea {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  resize: none;
}

.send-contact-button {
  background-color: var(--pruple, #9A14B0);
  color: white;
  border: none;
  padding: 10px 35px;
  border-radius: 10px;
  cursor: pointer;
  margin-top:5px;
  margin-right: 88px;
}
.lang-de .button-contact {
  font-family: var(--font--verla);
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  margin-right: 10px;
}