body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
}

header {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.logo {
  height: 50px;
  width: auto;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

h1 {
  margin: 0;
  font-size: 1.4em;
}

.menu-toggle {
  font-size: 1.8em;
  color: white;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  background-color: #0056b3;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  display: inline-block;
}

.nav-links a:hover {
  background-color: #003366;
}

.container {
  padding: 20px;
  background-color: white;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 10px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.success-box {
  background-color: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0056b3;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo-title {
    flex-direction: row;
    justify-content: flex-start;
  }
	
}
	
	form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"] {
  background-color: #0056b3;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
}

input[type="submit"]:hover {
  background-color: #003366;
}

.kontakt-info {
  margin-top: 20px;
  font-size: 0.95em;
  color: #333;
}

.kontakt-info i {
  margin-right: 6px;
}