body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

canvas#net-pattern {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}

h1.kontakt-title {
  text-align: center;
  font-size: 64px;
  margin-top: 60px;
}
.kontakt-container {
  padding: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.kontakt-form {
  display: flex;
  flex-direction: column;
}
.kontakt-form input, .kontakt-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.kontakt-form button {
  background-color: #00aaff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.kontakt-form button:hover {
  background-color: #0077cc;
}

.footer {
    background: linear-gradient(135deg, #0077cc, #00aaff);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 80px;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
    text-align: center;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer p {
    margin: 6px 0;
    font-size: 14px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}
