body{
  background-image: url(zbiornik2.jpg);
  background-attachment: fixed;
  background-size: cover;
}
.zbiornik {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  background: rgba(0,0,0,0.4);
  text-align: center;
  color: white;
  padding: 0 20px;
}

.zbiornik h1 { 
  font-size: 50px;
  margin-bottom: 20px;
  padding: 0 20px;
}

.zbiornik p { 
  font-size: 20px;
  max-width: 700px;
  line-height: 1.4; 
}
.boat-section {
  padding: 60px 20px;
  color: #fff;
}

.light-bg {
  background-color: #f5f7fa;
  color: #002d4f;
}

.dark-bg {
  background-color: #002d4f;
}

.boat-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.boat-photo {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.boat-info {
  flex: 1 1 300px;
}

.boat-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.boat-info .price {
  font-size: 24px;
  font-weight: bold;
  color: #00cfff;
  margin-bottom: 20px;
}

.boat-info p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-button {
  display: inline-block;
  background-color: #00cfff;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.contact-button:hover {
  background-color: #0295b7;
}

@media (max-width: 768px) {
  .boat-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .boat-photo, .boat-info {
    flex: 1 1 100%;
  }
}
