/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ogólne */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff6f8;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

/* Nagłówek */
header {
  background: linear-gradient(to right, #f98aa8, #f8c2d0);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

/* Sekcje */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e91e63;
}

/* Pakiety */
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.package {
  background: #fff;
  border: 2px solid #f8b2c4;
  border-radius: 16px;
  padding: 25px;
  flex: 1 1 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
}

.package h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #c2185b;
}

.package p {
  margin-bottom: 10px;
}

/* Przycisk */
.button {
  display: inline-block;
  background-color: #f06292;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.button:hover {
  background-color: #e91e63;
}

/* Płatności */
.payment-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.payment-buttons a img {
  height: 50px;
  transition: transform 0.3s;
}

.payment-buttons a:hover img {
  transform: scale(1.1);
}

/* Stopka */
footer {
  background-color: #f8c2d0;
  color: #333;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
