/* ===== STYL STRONY "O NAS" ===== */

.page-content {
  
  background-color: #ffffff;
  color: #161616;
  min-height: 100vh;
}

/* Teksty i układ */
.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}

.about-section h1 {
  font-size: 32px;
  color: #00a0e3;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 24px;
  color: #00a0e3;
  margin-top: 40px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.staff-list, .methods-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.staff-list li, .methods-list li {
  margin-bottom: 6px;
  font-size: 17px;
}

.staff-list li strong {
  color: #000000;
}

/* Przycisk powrotu */
.btn-back {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 24px;
  background-color: #FFB703;
  color: #161616;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}



/* ===== SEKCJA POBIERANIA PLIKU ===== */
.download-section {
  margin-top: 60px;
  padding: 30px;
  background-color: #fffef5;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
}

.download-section h2 {
  font-size: 22px;
  color: #1E4033;
  margin-bottom: 12px;
}

.download-section p {
  font-size: 17px;
  margin-bottom: 12px;
}

.download-btn {
  display: inline-block;
  background-color: #FFB703;
  color: #161616;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background-color: #FFA500;
  transform: translateY(-2px);
}

.note {
  font-size: 14px;
  margin-top: 12px;
  color: #555;
}

