/* Úspešná správa */
#success {
  display: none;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  opacity: 1;
  transition: opacity 1s;
}

/* Formulár */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-top: 20px;
}

.row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.col-1-3 { flex: 1; }
.col-2-3 { flex: 2; }
.col-3-3 { flex: 3; width: 100%; }

.input,
.textarea {
  width: 100%;
}

/* Responzívne správanie */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

.page-single > * {
    margin-top: -10px; /* alebo -30px, -40px podľa potreby */
}

.footer {
    margin-top: -50px; /* alebo -30px, -40px podľa potreby */
}