.header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo vľavo, tlačidlo vpravo */
  padding: 10px 20px;
}

.logo img {
  height: 40px; /* uprav si podľa seba */
}

.call-btn {
  background: #7cd115;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}.header {
  display: flex;
  align-items: center;
  gap: 15px;
}