#contact {
  background-color: #e7ddd1;
  padding: 5em 2em;

}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.contact-image img {
  width: 800px;
  height: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  object-fit: cover;
}

.contact-form {
  width: 380px;
}

.contact-form h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  margin-left: 25%;
  color: #000;
  font-family: 'Roca2', sans-serif;
  text-align: center;

}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 130%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  resize: none;
}

.form-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ok-btn,
.cancel-btn {
  padding: 6px 18px;

  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
  font-family: 'Roca2', sans-serif;
}

.ok-btn {
  margin-left: 25%;
  background-color: #EDB80A;
}

.cancel-btn {
  background-color: #EDB80A;
}

.ok-btn:hover {
  background-color: #c49706;
}

.cancel-btn:hover {
  background-color: #c49706;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-image img {
    width: 90%;
  }

  .contact-form {
    width: 90%;
  }
}


.social-icons-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  /* space between image and icons */
}

.social-icons-contacts img {
  width: 28px;
  /* change size here */
  height: auto;
  /* keeps original proportions */
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: brightness(0.9);
}

.social-icons-contacts img:hover {
  transform: scale(1.1);
  opacity: 0.8;
  filter: brightness(1);
}