* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* HERO / NAGŁÓWEK */
.hero {
  background: linear-gradient(135deg, #056744, #004d34);
  color: #fff;
  text-align: center;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background-color: white;
  color: #056744;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #f0f0f0;
}

/* SEKCJA O NAS */
.about {
  text-align: center;
  padding: 20px 15px;
  margin-bottom: 40px;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #056744;
}

.about p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* USŁUGI */
.services {
  padding: 20px 15px;
}

.services h2 {
  text-align: center;
  font-size: 28px;
  color: #056744;
  margin-bottom: 30px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  width: 220px;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-5px);
}

.card span {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #056744;
}

.card p {
  font-size: 14px;
}

/* STOPKA */
footer {
  text-align: center;
  padding: 30px 10px 10px;
  font-size: 13px;
  color: #777;
}
