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

body {
  font-family: 'Nunito', Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

header {
  background: none;
  padding: 0;
}

main {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #888;
}

/* Hero text */
.hero-text {
  text-align: center;
  padding: 40px 20px 20px;
}

.hero-title {
  font-family: 'Kalam', cursive;
  font-size: 2.4rem;
  color: #f5a800;
  margin-bottom: 16px;
  font-style: normal;
  font-weight: 700;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: bold;
  color: #1a1a6e;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sekcja jak wziąć udział */
.how-to {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.how-to-block {
  margin-bottom: 36px;
}

.how-to-block p {
  font-size: 1rem;
  color: #1a1a6e;
  line-height: 1.7;
  margin-bottom: 6px;
}

.how-to-lead strong {
  font-size: 1.05rem;
  font-weight: bold;
  color: #1a1a6e;
}

/* Sekcja nagród */
.awards {
  max-width: 800px;
  margin: 20px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.awards-important {
  margin-bottom: 40px;
}

.awards-important p {
  font-size: 1rem;
  color: #1a1a6e;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Sekcja pliki do pobrania */
.downloads {
  max-width: 800px;
  margin: 20px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.download-links {
  list-style: none;
  margin-top: 10px;
}

.download-links li {
  margin-bottom: 20px;
}

.download-links a {
  font-size: 1rem;
  color: #1a1a6e;
  text-decoration: underline;
  font-weight: normal;
}

.download-links a:hover {
  opacity: 0.75;
}

/* Sekcja kontakt */
.contact {
  max-width: 800px;
  margin: 20px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.contact-text {
  font-size: 1rem;
  color: #1a1a6e;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-text a {
  color: #1a1a6e;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.85;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social-icon.facebook {
  background-color: #1877f2;
}

.social-icon.linkedin {
  background-color: #0a66c2;
}

.social-icon.youtube {
  background-color: #ff0000;
  border-radius: 14px;
}

.social-icon.tiktok {
  background-color: #010101;
}

