/* RESET & TYPOGRAFIA */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px; line-height: 1.6; color: #333;
  margin: 0; padding-top: 90px;
}


/* HEADER */
header {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; color: #0a2a43; padding: 15px 30px;
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1002; border-bottom: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.logo img { display: block; height: 60px; width: auto; }

/* MENU */
header nav ul { list-style: none; display: flex; gap: 20px; }
/* Menu – wersja desktopowa */
header nav a {
  color: #0a2a43;
  text-decoration: none;
  font-weight: 600;   /* było 500 → teraz grubsze */
  font-size: 1.05rem; /* było domyślne 16px → teraz ~17px */
  letter-spacing: 0.3px; /* subtelne rozstrzelenie dla czytelności */
  transition: color 0.3s, border-bottom 0.3s;
}

header nav a:hover { color: #b32020; border-bottom: 2px solid #b32020; }

/* PRZYCISKI ZEWNĘTRZNE */
.external-links, .external-links-mobile { display: flex; gap: 12px; }
.external-links a {
  background: #0a2a43; color: #fff; padding: 6px 14px;
  border-radius: 4px; font-weight: bold; text-decoration: none;
  border: none; transition: background 0.3s;
}
.external-links a:hover { background: #b32020; color: #fff; }

/* Mobilne przyciski */
.external-links-mobile { display: none; flex-direction: column; gap: 10px; margin-top: 10px; }
.external-links-mobile a {
  background: #0a2a43; color: #fff; border: 2px solid #fff;
  padding: 8px 16px; border-radius: 6px; font-weight: bold;
  text-decoration: none; transition: background 0.3s, border-color 0.3s;
}
.external-links-mobile a:hover { background: #b32020; border-color: #fff; color: #fff; }

/* HAMBURGER */
.menu-toggle {
  display: none; background: transparent; border: none;
  color: #0a2a43; font-size: 1.8rem; cursor: pointer;
  margin-left: auto; z-index: 1003;
}
.menu-toggle.active { color: #fff; } /* po otwarciu menu */

/* HAMBURGER — ANIMOWANA IKONA */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 26px;
  z-index: 1003;
}

.menu-toggle .bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0a2a43;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Ułożenie 3 kresek */
.menu-toggle .bar:nth-child(1) { top: 0; }
.menu-toggle .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle .bar:nth-child(3) { bottom: 0; }

/* Po aktywacji (zamiana na X) */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  top: 8px;
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
  bottom: 8px;
}

/* Wersja na ciemnym tle (menu otwarte) */
header nav ul.active ~ .menu-toggle .bar {
  background-color: #fff;
}

/* W media query */
@media (max-width: 1020px) {
  .menu-toggle { display: block; }
}


/* BANER OGŁOSZENIOWY */
.alert-banner {
  width: 100%; background: #ffcc00; color: #000; text-align: center;
  padding: 10px; font-weight: bold; display: flex; align-items: center;
  justify-content: center; gap: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.alert-banner i { color: #8a6d00; }

/* SEKCJE */
section { padding: 60px 20px; max-width: 1200px; margin: auto; scroll-margin-top: 130px; }
section h2 {
  position: relative; padding-left: 14px; margin-bottom: 20px;
  color: #0a2a43; font-size: 1.6rem;
}
section h2::before {
  content: ""; position: absolute; left: 0; top: 0.2em; bottom: 0.2em;
  width: 4px; background-color: #b32020; border-radius: 2px;
}

/* HERO */
#hero {
  background: center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
body.loaded #hero {
  opacity: 1;
}

#hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,42,67,0.6); }
#hero h1, #hero p {
  position: relative; z-index: 1; opacity: 0; transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}
#hero h1 { font-size: 2.5rem; margin-bottom: 15px; animation-delay: 0.2s; }
#hero p { animation-delay: 0.5s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* TŁA SEKCJI */
#onas { background-color: #f7f9fc; }
#oferta { background-color: #edf1f5; }
#konkursy { background-color: #f7f9fc; }
#ogloszenia { background-color: #edf1f5; }
#oddzialy { background-color: #f7f9fc; }
#kontakt { background-color: #edf1f5; }

/* KAFELKI */
.onas-grid, .oferta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin: 30px 0;
}
.onas-card, .oferta-card {
  background: #fff; padding: 24px; border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.onas-card:hover, .oferta-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.onas-card h3, .oferta-card h3 {
  position: relative; padding-left: 14px; color: #0a2a43;
  margin-bottom: 10px; font-size: 1.2rem;
}
.onas-card h3::before, .oferta-card h3::before {
  content: ""; position: absolute; left: 0; top: 0.2em; bottom: 0.2em;
  width: 3px; background-color: #0a2a43; border-radius: 2px;
}
.onas-card p, .oferta-card p { font-size: 0.95rem; color: #444; }
.onas-card ul { margin-left: 18px; color: #444; font-size: 0.95rem; }

/* IKONY */
.icon { 
  color: #0a2a43; 
  margin-bottom: 16px; 
  display: inline-block; 
  transition: color 0.3s; 
}
.icon.small { font-size: 1.8rem; }
.icon.medium { font-size: 2.4rem; }
.icon.large { font-size: 3rem; }
.icon:hover { color: #b32020; } /* bordowy hover */

i.fas, i.fa { color: #0a2a43; margin-right: 6px; }

/* CTA */
.cta { 
  text-align: center; 
  margin-top: 30px; 
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: #0a2a43;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #b32020;
  color: #fff;
  transform: translateY(-2px);
}


/* KONKURSY */
.konkursy-card {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 540px;
  margin: 30px auto;
}
.konkursy-card .icon {
  font-size: 2.4rem;
  color: #0a2a43;
  margin-bottom: 12px;
}

/* STOPKA */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #0a2a43;
  color: #fff;
  font-size: 0.9rem;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1020px) {
  /* Hamburger widoczny i biały na granatowym tle */
  .menu-toggle {
    display: block;
    color: #0a2a43; /* granat na białym tle */
  }
  .menu-toggle.active {
    color: #fff; /* biały po otwarciu menu */
  }

  /* Panel rozwijany */
  /* --- ANIMOWANE MENU MOBILNE --- */
header nav ul {
  flex-direction: column;
  background: #0a2a43;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 1002;

  /* ukrycie i przygotowanie do animacji */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.4s ease;
}

header nav ul.active {
  padding: 20px;
  max-height: 600px; /* wystarczająco dużo, by pomieścić wszystkie linki */
  opacity: 1;
  transform: translateY(0);
}


  /* Linki w panelu */
  header nav ul a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
  }
  header nav ul a:hover {
    color: #b32020;
    border-bottom: none;
  }

  /* Przyciski w panelu: granat + biała obwódka */
  .external-links { display: none; }
  .external-links-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .external-links-mobile a {
    background: #0a2a43;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }
  .external-links-mobile a:hover {
    background: #b32020;
    border-color: #fff;
    color: #fff;
  }
}

/* Dodatkowe korekty dla małych ekranów */
@media (max-width: 600px) {
  #hero { padding: 100px 20px; }
  #hero h1 { font-size: 1.8rem; }
}

/* Kontakt (układ 2 kolumny) */
.kontakt-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.kontakt-col p {
  margin: 10px 0;
  font-size: 0.95rem;
}
.kontakt-col a {
  color: #0a2a43;
  font-weight: 600;
  text-decoration: none;
}
.kontakt-col a:hover { text-decoration: underline; }
.kontakt-col .small {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
  .kontakt-grid-2col {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

.counter {
  font-weight: bold;
  color: #0a2a43;
  font-size: 1.2rem;
}

.plus {
  font-weight: bold;
  color: #0a2a43;
  font-size: 1.2rem;
}

/* --- AKORDEON --- */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

/* Nagłówek akordeonu */
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 14px 40px 14px 14px; /* dodatkowe miejsce na strzałkę */
  font-size: 1rem;
  font-weight: bold;
  background: #0a2a43;
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background 0.3s, color 0.3s;
}

.accordion-header:hover {
  background: #b32020;
}

/* Strzałka */
.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 0.9em;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-header.active::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

/* Treść akordeonu – płynne otwieranie */
.accordion-content {
  display: block; /* nie ukrywamy display:none — działa na mobile */
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #f9f9f9;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

/* Widoczna treść */
.accordion-content.open {
  max-height: 600px; /* wystarczająco dużo na dłuższe ogłoszenia */
  padding: 15px 20px;
}

.accordion-content ul {
  margin-left: 20px;
  padding-bottom: 10px;
}

.accordion-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}




/* Druki */
.druki {
  margin-top: 30px;
  padding: 20px;
  background: #edf1f5;
  border-radius: 6px;
}
.druki h3 { margin-bottom: 10px; color: #0a2a43; }
.druki a {
  color: #0a2a43;
  font-weight: 600;
  text-decoration: none;
}
.druki a:hover { color: #b32020; text-decoration: underline; }

.menu-toggle:focus {
  outline: none;
}


.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 26px;
  z-index: 1003;
}

.menu-toggle .bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0a2a43;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle .bar:nth-child(1) { top: 0; }
.menu-toggle .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle .bar:nth-child(3) { bottom: 0; }

.menu-toggle.active .bar {
  background-color: #0a2a43; /* zachowaj kolor granatowy, widoczny na białym tle */
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


/* W media query */
@media (max-width: 1020px) {
  .menu-toggle { display: block; }
}


/* --- PRZYCISK TELEFONU (tylko mobile) --- */
.mobile-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1500;
  display: none;
}

/* Wygląd przycisku */
.mobile-call button {
  background: linear-gradient(145deg, #1d5785, #0a3966); /* mocniejszy gradient granatu */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.35),     /* głębszy cień pod spodem */
    0 0 16px rgba(255,255,255,0.9);  /* silniejszy biały glow */
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phonePulse 3s infinite ease-in-out;
}

/* Ikona telefonu */
.mobile-call button i {
  color: #e3d700 !important;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  left: 2px; /* lekkie przesunięcie w prawo */
}

/* Efekt hover */
.mobile-call button:hover {
  background: linear-gradient(145deg, #0d3e6d, #0a2a43);
  transform: scale(1.1);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.4),
    0 0 20px rgba(255,255,255,1);
}

.mobile-call button:active {
  background: linear-gradient(145deg, #b32020, #8a0f0f);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.4),
    0 0 20px rgba(255,255,255,1);
  transform: scale(1.05);
}

.mobile-call button:focus {
  outline: none;
  box-shadow: none;
}

.mobile-call button {
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}


/* Animacja pulsowania */
@keyframes phonePulse {
  0%, 100% {
    box-shadow:
      0 6px 14px rgba(0,0,0,0.35),
      0 0 16px rgba(255,255,255,0.9);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(0,0,0,0.4),
      0 0 28px rgba(255,255,255,1);
    transform: scale(1.04);
  }
}

/* Menu oddziałów */
.call-menu {
  position: absolute;
  bottom: 90px;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  min-width: 240px;
  animation: fadeInUp 0.3s ease forwards;
}

#call-menu.active {
  display: block;
  opacity: 1;
}

/* Linki w menu */
.call-menu a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #0a2a43;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.call-menu a:hover {
  background: #f9f9f9;
  color: #b32020;
}

/* Animacja pojawiania się menu */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Widoczne tylko na urządzeniach mobilnych */
@media (max-width: 768px) {
  .mobile-call {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

/* --- TEKSTY OPISOWE (O NAS / OFERTA) --- */
.text-card {
  width: 100%;
  padding: 10px 24px;
  border-left: 3px solid #0a2740;
  border-right: 3px solid #0a2740;
  box-sizing: border-box;
}

.text-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.text-card p:first-of-type::first-letter {
  color: #0a2740;
  font-size: 1.45em;
  font-weight: 600;
  display: inline-flex;
  align-items: flex-end;  /* <--- wyrównanie do dołu tekstu */
  line-height: 1;
  margin-right: 2px;
}


/* --- Lead --- */
.text-card .lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}

/* Responsywność */
@media (max-width: 768px) {
  .text-card {
    border-left: 3px solid #0a2740;
    border-right: 3px solid #0a2740;
    padding: 8px 16px;
  }

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

  .text-card p:first-of-type::first-letter {
    font-size: 1.3em;
    padding-right: -2px;
  }
}

.pdf-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 4rem;
  background-color: #0a2740; /* granatowy solid */
  border-radius: 6px;
  clip-path: polygon(
    0 0,
    calc(100% - 0.7rem) 0,
    100% 0.7rem,
    100% 100%,
    0 100%
  ); /* wycięty róg */
  color: white;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  user-select: none;
  vertical-align: middle;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Napis PDF wewnątrz */
.pdf-icon::before {
  content: "PDF";
  position: relative;
  z-index: 2;
}

/* Trójkącik „zagiętego” rogu */
.pdf-icon::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}

/* Efekt hover */
.pdf-icon:hover {
  transform: scale(1.06);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}



.pdf-svg svg {
  width: 3.2rem;
  height: 3.2rem;
  vertical-align: middle;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pdf-svg:hover svg {
  transform: scale(1.08);
  opacity: 0.9;
}


button, a {
  -webkit-tap-highlight-color: transparent;
}

/* --- EFEKT DOTYKU (MOBILE) --- */
@media (hover: none) and (pointer: coarse) {
  button:active:not(.menu-toggle),
  .btn:active,
  .external-links a:active,
  .external-links-mobile a:active {
    background: linear-gradient(145deg, #b32020, #8a0f0f) !important;
    color: #fff !important;
    transform: scale(0.97);
    transition: background 0.15s, transform 0.1s;
  }
}




/* --- Formularz --- */

.contact-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-container h2 {
  text-align: left;
}

.contact-container p {
  margin-bottom: 40px;
  color: #555;
}

.contact-form {
  display: grid;
  gap: 20px;
  text-align: left;
}

.contact-form label {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #888;
  outline: none;
}

.cta-btn {
  background: #e30613;
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #b70510;
}

/* Komunikat potwierdzenia */
.form-success {
  background: #d6f5d6;
  border: 1px solid #6bbf6b;
  padding: 15px 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 6px;
  font-size: 18px;
  color: #214d21;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.field-error {
  border-color: #d9534f !important;
  background: #fff0f0;
}

.form-success {
  background: #e5ffe8;
  border-left: 4px solid #28a745;
  padding: 12px 18px;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 600;
  color: #155724;
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.popup.active {
  display: flex;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  animation: slideUp 0.3s ease;
}

.popup-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.popup-close {
   cursor: pointer;
}


@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --- Formularz 2 kolumny --- */

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group label,
.form-full label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #0a2a43;
}

.form-two-col input,
.form-two-col select,
.form-two-col textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 6px;
  transition: 0.25s;
}

.form-two-col input:focus,
.form-two-col select:focus,
.form-two-col textarea:focus {
  border-color: #0a2a43;
  outline: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .form-two-col {
    grid-template-columns: 1fr;
  }
}


/* checkbox */
.checkboxes {
  margin-top: -5px; /* bliżej textarea */
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #333;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-weight: normal;
}

.checkbox-label a {
  color: #0a2740;
  text-decoration: underline;
  font-weight: normal;
}

.checkbox-label a:hover {
  text-decoration: none;
}

/* --- Wersja bardziej zwarta formularza kontaktowego --- */
.contact-section {
  padding: 60px 15px;
}

.contact-form {
  gap: 14px;
}

.contact-form label {
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 8px 10px;
  font-size: 15px;
  border-radius: 5px;
}

.form-two-col {
  gap: 16px;
}

.cta-btn {
  padding: 10px 22px;
  font-size: 1rem;
}

.checkboxes {
  margin-top: -2px;
  margin-bottom: 10px;
}

.checkbox-label {
  gap: 6px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.popup-content {
  padding: 24px 30px;
}

