/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif; 
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.container .btn{
  display: inline-block;
  margin: 20px auto 0;
}

/* Header */
.header {
  /*background: #ffffff;*/
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 2px solid #e0e0e0;
  z-index: 100;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.logo {
  height: 50px;
}
/* Styl dla nazwy obok logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 20px; /* odstęp między logo a nazwą */
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f7b73; /* lub inny kolor pasujący do headera */
}



.tagline {
  font-size: 0.9rem;
  color: #555;
  margin-top: -5px;
  text-align: center;
  font-style: italic;
}


.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-list li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}
.nav-list li a:hover {
  color: #0f7b73; /* brand color approximation */
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* === Dropdown menu === */
.nav-list .dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 999;
  min-width: 200px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
}

/* Pokazanie menu przy hover na desktopie */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Stylizacja dla wersji mobilnej (gdy menu się rozwija) */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-menu li a {
    padding-left: 25px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}













/* Hero */
.hero {
  padding: 80px 0;
  text-align: center;
  background: #f5f5f5;
}
.hero-content{
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center; 
  padding: 10px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: #fff;
  z-index: 2;
}
.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* delikatny cień */
}
.hero-content p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 30px auto; 
}

/* HERO: pokaz slajdów */
.hero {
  position: relative;
  height: 95vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden; 
  text-align: center;
}

.hero .slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease-in-out, transform 1s ease;
}

.hero .slide.active {
  opacity: 1;
  transform: scale(1);
}
 
.hero .slide.fallback {
  background: linear-gradient(120deg,#0f7b73 0%, #82e0c6 100%);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0.5);
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero .btn {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.hero .btn:hover { background: #e68a00; }





/* Kontrolki */
.hero .controls {
  position: absolute;
  left: 50%;              /* zamiast right: 20px */
  bottom: 20px;
  transform: translateX(-50%); /* wyśrodkowanie względem środka */
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero .controls button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero .controls button:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .hero { height: 60vh; }
}




















/* --- Ikony social media --- */
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;              /* odstęp między ikonami */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #0f7b73;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #095a51;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1); /* białe ikony */
}





/* Sections */
.section {
  padding: 60px 0;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #0f7b73;
}
.oferta .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
}





/* WSPOLRACA*/

/* SIATKA 2x2 I CENTROWANIE */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* KAFELKI KWADRATOWE */
.wspolpraca-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* układ pionowy: nagłówek nad przyciskiem */
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1/1;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  border: 3px solid rgba(255, 255, 255, 0.25); /* ✅ subtelna ramka */
}

.wspolpraca-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  z-index: 0;
}

/* Treść kafelka na zdjęciu */
.wspolpraca-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}

/* Ewentualny półprzezroczysty overlay */
.wspolpraca-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.wspolpraca-section {
  background-color: #2e2e2e; 
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.wspolpraca-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}


/* Efekt hover – dodajemy podświetlenie ramki */
.wspolpraca-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.4);
  border-color: rgba(255, 255, 255, 0.6); /* jaśniejsza ramka przy hoverze */
}

.wspolpraca-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.wspolpraca-card p {
  font-size: 1rem;
}

.btn {
  background: #0f7b73;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.btn:hover {
  background: #095a51;
}

/* Przycisk na środku */
.wspolpraca-card .btn {
  position: relative;
  z-index: 2;
  background-color: #f2c14e;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.wspolpraca-card .btn:hover {
  background-color: #e6b900;
}

.wspolpraca-card.zimowe { background-color: #0f7b73; }
.wspolpraca-card.letnie { background-color: #095652; }
.wspolpraca-card.teren { background-color: #007f7a; }
.wspolpraca-card.szkoly { background-color: #0fa09b; }

/* Responsywność */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
}




/* === PREMIUM STYLE BUTTON === */
.wspolpraca-card .btn.premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f2c14e 0%, #ffdf7f 100%);
  color: #111;
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.3);
}

/* Subtelny błysk po najechaniu */
.wspolpraca-card .btn.premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  transition: 0.6s;
  z-index: 1;
}

.wspolpraca-card .btn.premium:hover::after {
  left: 125%;
}

.wspolpraca-card .btn.premium:hover {
  background: linear-gradient(135deg, #ffda5a 0%, #ffe689 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.45);
  transform: translateY(-2px);
}

.wspolpraca-card .btn.premium .arrow {
  transition: transform 0.3s ease;
  font-weight: 700;
}

.wspolpraca-card .btn.premium:hover .arrow {
  transform: translateX(6px);
}











/* Obozy zimowe */
.wspolpraca-card.zimowe {
  background-color: #0f7b73;
  color: #ffffff;
}
.wspolpraca-card.zimowe .btn {
  background-color: #0f7b73;
  color: #ffffff;
}
.wspolpraca-card.zimowe .btn:hover {
  background-color: #073d35;
}

/* Obozy letnie */
.wspolpraca-card.letnie {
  background-color: #82e0c6;
  color: #ffffff;
}
.wspolpraca-card.letnie .btn {
  background-color: #0f7b73;
  color: #ffffff;
}
.wspolpraca-card.letnie .btn:hover {
  background-color: #073d35;
}

/* Gry terenowe */
.wspolpraca-card.teren {
  background-color: #18a07a;
  color: #ffffff;
}
.wspolpraca-card.teren .btn {
  background-color: #0f7b73;
  color: #ffffff;
}
.wspolpraca-card.teren .btn:hover {
  background-color: #073d35;
}

/* Współpraca dla szkół */
.wspolpraca-card.szkoly {
  background-color: #00b27d;
  color: #ffffff;
}
.wspolpraca-card.szkoly .btn {
  background-color: #0f7b73;
  color: #ffffff;
}
.wspolpraca-card.szkoly .btn:hover {
  background-color: #073d35;
}
















/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .modal-images img { width: 100px; }
}



.card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #333;
}
.card p {
  font-size: 1rem;
  color: #555;
}

/* O nas */
.onas p {
  max-width: 800px;
  margin: 0 auto 20px auto;
}

/* Sekcja KADRA */
.kadra {
  padding: 60px 20px;
  text-align: center;
  background: #fafafa;
}

.kadra h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.kadra .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #444;
}

.kadra .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.card {
  perspective: 1000px;
  width: 100%;
  max-width: 300px;
  height: 420px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip przy hover i kliknięciu */
.card:hover .card-inner,
.card.flipped .card-inner {
  transform: rotateY(180deg);
}


.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* FRONT */
.card-front {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.card-front img {
  width: 100%;
  height: 75%;
  object-fit: cover;
}

.card-front h3 {
  margin: 10px 0 4px;
  font-size: 1.2rem;
  color: var(--color-primary);
}
.card-front span {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 12px;
}

/* BACK */
.card-back {
  transform: rotateY(180deg);
  background: #fefefe url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath fill='%23e0e0e0' fill-opacity='0.3' d='M100 0L200 200H0z'/%3E%3C/svg%3E") repeat;
  background-size: 120px;
  padding: 20px;
  color: #222;
  overflow-y: auto;
}

.card-back h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--color-primary)
}

.card-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(255,255,255,0.85);
  padding: 12px;
  border-radius: 8px;
}


/* Sekcja Kontakt */
.kontakt {
  background: linear-gradient(135deg, #e0f0ff, #f0f4f8); /* delikatny gradient */
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

/* Główna karta */
.kontakt-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}

.kontakt-wrapper:hover {
  transform: translateY(-3px);
}

.kontakt h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0077cc;
}

.kontakt .opis {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: #333;
}

.kontakt p {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: #555;
}

.kontakt a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.kontakt a:hover {
  text-decoration: underline;
}

/* Formularz kontaktowy */
.kontakt-form {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  text-align: left;
}

.form-inner {
  background: #f9fbff; /* subtelne tło formularza */
  padding: 25px;
  border-radius: 12px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kontakt-form label {
  font-weight: 600;
  color: #333;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccd6f6;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: #0077cc;
  box-shadow: 0 0 6px rgba(0, 119, 204, 0.2);
  outline: none;
}

.kontakt-form button {
  padding: 12px 20px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.kontakt-form button:hover {
  background-color: var(--color-dark);
  transform: translateY(-2px);
}

/* reCAPTCHA */
.g-recaptcha {
  margin: 10px 0;
  transform: scale(0.95);
  transform-origin: 0 0;
}

/* Status formularza */
#formStatus {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

/* Zdjęcie pod formularzem */
.kontakt-photo {
  margin-top: 30px;
  text-align: center;
}

.kontakt-photo img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Responsywność */
@media (max-width: 768px) {
  .kontakt-wrapper {
    padding: 30px 20px;
  }
  .form-inner {
    padding: 20px;
  }
}
 

/* Footer */
.footer {
  background: #0f7b73;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* Responsive / Mobile */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    position: absolute;
    right: 20px;
    top: 70px;
    padding: 16px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .nav-list.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}








/* --- Global Colors --- */
:root {
  --color-primary: #0f7b73;       /* główny kolor logo/nagłówków */
  --color-accent: #f2c14e;        /* przyciski, CTA */
  --color-neutral: #e0e0e0;       /* tła sekcji */
  --color-dark: #095652;          /* ciemniejszy odcień hover, borders */
  --color-light: #ffffff;         /* tekst na ciemnym tle / kontrast */
}

/* Basic Reset */

body {

  background: var(--color-light);
}


/* Header */
.header {
  background: var(--color-light);

  border-bottom: 1px solid var(--color-neutral);

}


.logo-text {

  color: var(--color-primary);
}

.nav-list li a {

  color: var(--color-dark);

}
.nav-list li a:hover {
  color: var(--color-primary);
}


/* Hero */
.hero {

  background: var(--color-neutral);

  color: var(--color-light);
}
.hero-content h1 {

  color: var(--color-light);
}

.btn {
  background: var(--color-primary);
  color: var(--color-light);

}
.btn:hover {
  background: var(--color-dark);

}
.section h2 {

  color: var(--color-primary);
}

/* --- Współpraca --- */
.wspolpraca-section {
  background-color: var(--color-neutral);
  color: var(--color-dark);


}
.wspolpraca-card {

  color: var(--color-light);
  background-color: var(--color-primary); /* mocniejszy kontrast */

}
.wspolpraca-card p {

  color: var(--color-light);
}
.wspolpraca-card .btn {

  background-color: var(--color-accent);

}
.wspolpraca-card .btn:hover {
  background-color: #e6c200;

}

.modal-content {
  background-color: var(--color-light);

}




/* --- Animacja pojawiania się sekcji --- */
.hidden-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hidden-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.show-section {
  opacity: 1;
  transform: translateY(0);
}


/* --- Płynne przewijanie --- */
html {
  scroll-behavior: smooth;
}





/* --- NOWOCZESNY TIMELINE (naprzemienny) --- */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  position: relative;
  overflow: hidden;
}
.timeline {
  position: relative;
  margin: 60px auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
}
.timeline-year { text-align: center; font-size: 28px; font-weight: bold; color: var(--color-primary); margin-bottom: 40px; }
.timeline-event {
  position: relative;
  width: 50%;
  padding: 30px 40px;
  box-sizing: border-box;
  animation: slideIn 0.8s ease both;
}
.timeline-event:nth-child(odd) { left: 0; text-align: right; }
.timeline-event:nth-child(even) { left: 50%; text-align: left; }
.timeline-event::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(15,123,115,0.12);
}
.timeline-event:nth-child(odd)::before { right: -10px; }
.timeline-event:nth-child(even)::before { left: -10px; }
.event-date { font-weight: bold; color: var(--color-primary); margin-bottom: 10px; }
.event-content h3 { color: var(--color-primary-dark); margin-bottom: 10px; }
.event-content p, .event-content ul { margin-bottom: 10px; color:#333; line-height:1.6; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .timeline::before { left: 8px; }
  .timeline-event { width: 100%; padding-left: 40px; text-align: left; }
  .timeline-event::before { left: 0; }
}

/* small responsive tweaks */
@media (max-width: 480px) {
  .logo-text { font-size: 1.1rem; }
  .hero-content h1 { font-size: 1.6rem; }
  .timeline-event { padding: 20px; }
}









    /* --- HERO dla strony MISJA --- */
.hero-misja {
  background-image: url("images/misja/hero-misja.jpg");
  background-size: cover;
  background-position: center;
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-misja .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-misja .hero-content {
  position: absolute;
  z-index: 2;
}

.hero-misja h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-misja p {
  font-size: 1.3rem;
}

/* --- Sekcja opisu MISJI --- */
.opis-misji {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.opis-misji h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
}

.opis-misji p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* --- Sekcja WSPARCIE --- */
.wsparcie {
  background: #f7f8fb;
  padding: 80px 20px;
}

.wsparcie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.wsparcie-text {
  flex: 1 1 400px;
}

.wsparcie-text h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.wsparcie-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.konto, .blik {
  margin-top: 20px;
}

.numer-konta, .numer-blik {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 5px;
  letter-spacing: 1px;
}

.wsparcie-img {
  flex: 1 1 400px;
}

.wsparcie-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .wsparcie-grid {
    flex-direction: column;
    text-align: center;
  }

  .wsparcie-img {
    order: -1;
  }
}

