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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #b30000;
  color: #ffffff;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px 30px;
  font-size: 2rem;
  font-weight: 700;
}

nav {
  position: sticky;
  top: 0;
  background: rgba(120, 0, 0, 0.95);
  padding: 15px 10px;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.7;
}

section {
  padding: 50px 20px 0;
  max-width: 900px;
  margin: 0 auto;
  scroll-margin-top: 20px;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.centered-image {
  text-align: center;
  margin: 20px 0;
}

.fundacja-logo {
  max-width: 300px;
  height: auto;
  border-radius: 50%;
}

.mb-25 {
  margin-bottom: 25px;
}

.section-subtitle {
  margin-top: 30px;
  margin-bottom: 10px;
}

.info-block {
  margin-bottom: 20px;
  line-height: 1.8;
}

.help-list {
  margin-left: 20px;
  line-height: 1.8;
}

.map-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.form {
  max-width: 400px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn-reset {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: #bbb;
  cursor: pointer;
}

.btn-submit {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: #4CAF50;
  color: white;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.grzeszek-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto 0;
  max-width: 600px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.grzeszek-box h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.grzeszek-box p {
  font-size: 1.1rem;
  font-weight: 300;
}

.mobile-right-button {
  display: none;
}

input,
textarea,
select {
  font-size: 16px;
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  nav {
    padding: 10px;
    position: static;
  }

  nav a {
    font-size: 1.1rem;
  }

  #home {
    display: none;
  }

  section {
    scroll-margin-top: 0;
  }

.mobile-right-button {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 20px;
  padding: 10px 14px;
  background: #318D2C;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  backdrop-filter: blur(4px);
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 5px #318D2C);
}

.mobile-right-button.visible {
  opacity: 0.9;
  pointer-events: auto;
}

@media (min-width: 601px) {
  .mobile-right-button {
    display: none;
  }
}
}