body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: #b30000;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
  text-align: center;
  margin-bottom: 15px;
}

.logo {
  width: 300px;
  height: auto;
  max-width: 100%;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: #8c0000;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.menu li {
  display: inline-block;
  margin: 0;
  position: relative;
  flex-grow: 1;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 12px 20px;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: #d30000;
  border-radius: 5px;
}

footer {
  background-color: #b30000;
  color: white;
  padding: 15px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 50px;
  display: flex;           /* Dodano flex dla lepszego centrowania */
  justify-content: center; /* Wycentrowanie poziome */
  align-items: center;     /* Wycentrowanie pionowe */
}

footer p {
  text-align: center;
  margin: 0;
  width: 100%;            /* Zapewnia pełną szerokość dla tekstu */
}

.content {
  margin: 30px auto;
  width: 85%;
  max-width: 1200px;
  text-align: left;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
  color: #b30000;
  margin-top: 25px;
  margin-bottom: 15px;
}

h1 {
  font-size: 28px;
  text-align: center;
  border-bottom: 2px solid #b30000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  margin-bottom: 20px;
  margin-left: 20px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #b30000;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ff0000;
  text-decoration: underline;
}

.pdf-links {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.pdf-links h3 {
  margin-top: 0;
}

.pdf-links ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.pdf-links li {
  margin-bottom: 10px;
}

.pdf-links a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #b30000;
  color: white;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.pdf-links a:hover {
  background-color: #ff0000;
  text-decoration: none;
}

.product-section {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.product-section:last-child {
  border-bottom: none;
}

address {
  font-style: normal;
  margin-bottom: 15px;
}

/* Dodajemy style dla sekcji kontakt */
.contact-content {
  text-align: center;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
  }
  
  .content {
    width: 95%;
    padding: 15px;
  }
  
  .logo {
    width: 220px;
  }
}