.tilda-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.custom-btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #A87C2D; /* золотисто-медовый */
  color: white;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  border: 1px solid #A87C2D;
}

.custom-btn:hover {
  background-color: transparent;
  color: #A87C2D;
  border: 1px solid #A87C2D;
}