/* ------- STYL SEKCJI MOTORÓWKI „STRONG” ------- */
.boat-strong{
  max-width: 760px;          /* szerokość bloku, możesz zmienić */
  margin: 0 auto 4rem;       /* wycentrowanie + odstęp od dołu */
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.boat-features{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 1.5rem 2rem;          /* odstępy między kafelkami */
  margin-bottom: 2.5rem;
}

.feature{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  justify-content: center;
  font-size: 1rem;
}

.feature .icon{
  font-size: 1.8rem;
  color: #0a66c2;            /* spokojny, „wodny” niebieski */
}

.divider{
  width: 40%;
  height: 2px;
  background: #0a66c2;
  border: 0;
  margin: 2rem auto;
}

.price-table h3{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.price-line{
  display: flex;
  justify-content: space-between;
  padding: .6rem 1.2rem;
  font-size: 1.15rem;
  border-bottom: 1px solid #e0e0e0;
}

.price-line:last-child{ border-bottom: 0; }

.price{ font-weight: 700; }