body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f0fff0, #e8f5e9);
  color: #234d20;
}

/* Główny układ strony*/
.container {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

/* Nagłówek */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #234d20;
}

/* Podtytuł pod nagłówkiem */
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4b6043;
}

/* Kontener  oba bloki QR */
.qrcod {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

/* Pojedynczy blok z QR i przyciski*/
.qr-block {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  max-width: 280px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* najechanie na ramke   */
.qr-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* kod QR */
.qr-block img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* Przyciski pobierania */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: background-color 0.2s ease;
}

.btn.android {
  background-color: #3a9d23;
}

.btn.android:hover {
  background-color: #2e7c1b;
}

.btn.ios {
  background-color: #d4af37;
}

.btn.ios:hover {
  background-color: #b4912d;
}

.law {
  background-color: #a6c8a9;
  
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
   margin: 0.5rem 0 0.5rem; 
}

.footer-information {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 0;
}

.heading-apk {
  text-align: center;
  font-size: 1.1rem;
  font-weight:400;
}

.regulations {
  margin-top: 0;
   font-size: 0.8rem;
}

.btn-regulations {
  color: #092b20
}

.btn-regulations:hover {
  color: #654e55;
}

/* telefony*/
@media (max-width: 768px) {
  .qrcodes {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}