        body {
            font-family: 'Red Rose', cursive;
	    font-weight: 700;
            margin: 0;
        }

        .header {
            background-color: #2a5286;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            flex-direction: column;
        }

        .header-top {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-bottom: 40px;
        }

        .logo {
            max-width: 350px;
            height: auto;
        }

        .text {
            text-align: center;
            color: white;
            margin-left: 30%;
        }

        .text div:nth-child(1) {
            font-size: 30px;
	    font-weight: 400;
        }

        .text div:nth-child(2),
        .text div:nth-child(3) {
            font-size: 20px;
            font-weight: 400;
        }

        .header nav {
            margin-bottom: 0; /* odstęp będzie realizowany przez biały kontener */
        }

        .header nav ul {
            list-style: none;
            margin: 0;
            padding: 0 0 5px 0;
            text-align: center;
        }

        .header nav ul li {
            display: inline-block;
            margin: 0 -5px;
            position: relative;
        }

        .header nav ul li a {
            background-color: #ffffff;
            text-decoration: none;
            color: rgba(77, 100, 148, 1);
            padding: 10px 10px;
            display: block;
            border-radius: 8px;
            font-size: 14px;
            transition: background-color 0.5s ease, color 0.5s ease;
		}

        .header nav ul li a:hover {
            background-color: #103f7c;
            text-decoration: none;
            color: #ffffff;
        }

		footer nav ul {
			list-style: none; 
			margin: 0; 
			padding: 15px 0; 
			display: flex; 
			justify-content: center; 
			gap: 30px; 
			margin-bottom: 20px;
		}

        footer nav ul li {
            display: inline-block;
            margin: 0 5px;
            position: relative;
        }

        footer nav ul li a {
            background-color: #ffffff;
            text-decoration: none;
            color: #103f7c;
            padding: 10px 10px;
            display: block;
            border-radius: 8px;
            font-size: 14px;
            transition: background-color 0.5s ease, color 0.5s ease;
		}

        footer nav ul li a:hover {
            text-decoration: underline;
        }

/* Styl hamburgera - domyślnie ukryty */
		.hamburger {
			display: none;
			position: fixed;
			top: 0px;         /* odległość od góry ekranu */
  			right: 0px;       /* odległość od prawej krawędzi ekranu */
			flex-direction: column;
			cursor: pointer;
			width: 24px;
			height: 20px;
			justify-content: space-between;
			margin: 10px auto; /* wyśrodkowanie w nav */
			background-color: transparent;
			border: none; /* usuń obramowanie, jeśli jest */
			padding: 0;
z-index: 1100;
		}
		.hamburger span {
			display: block;
			height: 3px;
			background-color: rgba(255, 255, 255, 1);
			border-radius: 4px;
		}
		nav ul {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			gap: 30px;
			justify-content: center;
		}
.side-menu {
  position: fixed;           /* musi być fixed, aby pokryć cały ekran */
  top: 0;
  left: 0;
  width: 100vw;              /* pełna szerokość widoku */
  height: 100vh;             /* pełna wysokość widoku */
  background-color: #ffffff; /* nieprzezroczyste tło */
  transform: translateX(-100%); /* ukryte poza ekranem po lewej */
  transition: transform 0.3s ease;
  z-index: 1050;
  display: flex;             /* flexbox */
  flex-direction: column;    /* układ pionowy */
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;          /* przewijanie jeśli zawartość za długa */
}
/* Po dodaniu klasy active menu się wysuwa */
.side-menu.active {
  transform: translateX(0);
}

/* Przycisk zamknięcia */
.close-btn {
  align-self: flex-end;
  font-size: 40px;
  color: rgba(0, 0, 0, 1);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Lista menu w side-menu */
.side-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;    /* kluczowe: pionowy układ */
  gap: 15px;  
}

.side-menu nav ul li {
  margin: 0;                 /* usuń marginesy, bo gap jest */
}

.side-menu nav ul li a {
  color: #103f7c;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: block;            /* aby link zajmował całą szerokość */
  padding: 10px 0;
}

.side-menu nav ul li a:hover {
  text-decoration: underline;
}

/* Responsywność dla ekranów do 768px */
@media (max-width: 768px) {


        .header-top {
            justify-content: left;
            align-items: center;
            margin-bottom: 20px;
	    margin-top: 10px;
        }
        .logo {
            max-width: 150px;
        }

	footer nav ul li {
		justify-content: center;
    }


footer nav ul {
    display: flex;               /* upewnij się, że jest flex */
    flex-direction: column;      /* ułożenie pionowe */
    justify-content: center;     /* wyśrodkowanie w osi głównej (pion) */
    align-items: center;         /* wyśrodkowanie w osi poprzecznej (poziom) */
    gap: 15px;                   /* odstęp między elementami */
    padding-left: 0;             /* usuń ewentualne wcięcia */
    margin-bottom: 0;            /* dostosuj marginesy, jeśli trzeba */
  }

  footer nav ul li {
    width: 100%;                 /* opcjonalnie, aby elementy zajmowały całą szerokość */
    text-align: center;          /* wyśrodkowanie tekstu w linkach */
  }
	.text {
            display: none;
        }
	.header nav ul {
        display: none; /* ukryj menu */
        flex-direction: column;
        padding: 0;
        margin: 0 auto;
        width: 90%;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        position: absolute;
        top: 60px; /* dostosuj do wysokości headera */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .header nav ul.active {
        display: flex; /* pokaż menu po kliknięciu hamburgera */
    }
    .hamburger {
    position: relative; /* lub absolute, jeśli potrzebujesz */
        display: flex !important; /* pokaż hamburgera */
   }



}

        /* BIAŁY KONTENER 20px POD MENU */
        .white-bar {
            width: 100%;
            height: 20px;
            background-color: #ffffff;
        }

        /* KONTENER ZE ZDJĘCIEM W TLE */
        .image-container {
            width: 100%;
            height: 500px; /* zmniejszona wysokość, aby nie kolidować z parallax */
            background-size: cover;
            background-position: center center;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* CZARNY PÓŁPRZEZROCZYSTY BOX Z TEKSTEM */
        .text-box {
            background-color: rgba(0, 0, 0, 0.4);
            color: white;
            padding: 10px;
            max-width: 35%;
	    height: 265px;
            text-align: center;
            border-radius: 8px;
            box-sizing: border-box;
	    font-size: 20px;
	    font-weight: 700;
            margin-top: 220px;    /* zwiększona przestrzeń nad */
            margin-bottom: 220px; /* zwiększona przestrzeń pod */
        }

        /* PRZYCISK W TEXT-BOX */
        .btn-link {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #103f7c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
	    font-weight: 300;
            transition: background-color 0.3s ease;
	    border: 2px solid #103f7c;
        }

        .btn-link:hover {
            background-color: rgba(34, 34, 34, 0);
	    border: 2px solid #103f7c;
            color: #ffffff;
        }

        .full-width-box {
            width: 100%;
            background-color: #2a5286; /* taki sam kolor jak header */
            color: white;
            text-align: center;
            padding: 20px 0;
            font-size: 24px;
            font-weight: bold;
            font-family: 'Red Rose', sans-serif;
            box-sizing: border-box;
        }

        .full-width-image {
            width: 60%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .button-container {
            width: 100%;
            text-align: center; /* wyśrodkowanie zawartości */
            margin-top: 20px;   /* odstęp od góry */
        }

        .centered-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #103f7c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
	    font-weight: 400;
            transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
            border: none; /* domyślnie bez obwódki */
            border: 2px solid #103f7c; /* obwódka 2px */
	    margin-bottom: 5px;
        }

        .centered-button:hover {
            background-color: transparent; /* przezroczyste tło */
            color: #103f7c; /* kolor tekstu taki jak tło normalne */
            border: 2px solid #103f7c; /* obwódka 2px */
        }

        /* Responsywność */
        @media (max-width: 768px) {
          

  .full-width-image {
            width: 350px;
        }
.full-width-box {
margin-bottom: 10px;        }	
	.text {
                margin-left: 10%;
            }

            .text-box {
	    font-size: 14px;
	    font-weight: 400;
                max-width: 70%;
                margin-top: 60px;
                margin-bottom: 60px;
		height: 215px;
            }

            .image-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .text-box {
                max-width: 85%;
                padding: 15px;
                margin-top: 40px;
                margin-bottom: 40px;
            }

            .image-container {
                height: 250px;
            }
        }

        /* --- Sekcja Parallax --- */
        .parallax-section {
            position: relative;
            width: 100%;
            height: 50vh; /* wysokość okna przeglądarki */
            background-image: url('parallax.webp'); /* podmień na właściwą ścieżkę */
            background-size: cover;
            background-position: center center;
            background-attachment: fixed; /* efekt "stojącego" tła */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .parallax-text-box {
    	background-color: rgba(0, 0, 0, 0.4);
    	color: white;
    	padding:50px 40px;
    	border-radius: 10px;
    	min-width: 480px; /* minimalna szerokość */
    	min-height: 180px; /* minimalna wysokość */
    	text-align: center;
    	box-sizing: border-box;
	font-size: 20px;
    	position: relative;
	flex-direction: column; /* ułożenie w kolumnie: tekst nad przyciskiem */
  	justify-content: center; /* wyśrodkowanie pionowe */
  	align-items: center; /* wyśrodkowanie poziome */
  	animation: slideDown 1.5s ease forwards;
}

/* Responsywność */
        @media (max-width: 768px) {
.parallax-section {
            position: relative;
            width: 100%;
            height: 30vh; /* wysokość okna przeglądarki */
            background-image: url('parallax.webp'); /* podmień na właściwą ścieżkę */
            background-size: cover;
            background-position: center center;
            background-attachment: fixed; /* efekt "stojącego" tła */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
	    margin-bottom: -20px;
        }
.parallax-text-box {
	font-size: 16px;
	font-weight: 400;
    	min-width: 250px; /* minimalna szerokość */
    	min-height: 100px; /* minimalna wysokość */
}
}
.left-aligned-container-gj {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* wyrównanie do lewej */
  gap: 10px; /* odstęp między elementami */
  padding: 15px 20px;
  box-sizing: border-box;
  background-color: #ffffff; /* opcjonalne tło */
  font-family: 'Red Rose', sans-serif;
  font-size: 14px;
  font-weight:400;
  color: #333;
  width: 100%; /* kontener na całą szerokość, ale elementy do lewej */
  margin-left: 3%;
}

.left-text-gj,
.right-text-gj {
  white-space: nowrap; /* zapobiega łamaniu tekstu */
}

.arrow-right {
  font-size: 16px;
  color: #555;
  user-select: none;
}

.left-text-gj a {
  color: #333;                /* kolor linku taki jak tekst */
  text-decoration: none;      /* brak podkreślenia domyślnie */
  transition: text-decoration-color 0.15s ease-in-out,
              color 0.15s ease-in-out;
  outline: none;
}
.left-text-gj a:hover,
.left-text a:focus {
  text-decoration: underline;
  text-decoration-thickness: 1.5px; /* można dopasować grubość */
  color: #111;
}
.section-container {
  padding: 20px 0;
  width: 80%;
  box-sizing: border-box;
  margin-left: 150px;
  margin-top:
}

.section-container h2 {
  position: relative;
  display: inline-block; /* ważne, aby szerokość była dopasowana do tekstu */
  font-family: 'Red Rose', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
  padding-bottom: 20px; /* odstęp pod tekstem */
}

.section-container h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: rgba(77, 100, 148, 1);
}

.content-container {
  display: flex;
  width: 80%;
  box-sizing: border-box;
  gap: 100px; /* odstęp między tekstem a obrazem */
  padding: 20px;
  align-items: center; /* wyrównanie do góry */
  margin-left: 130px;
  text-align: justify;
}

@media (max-width: 768px) {
.section-container h2 {
  margin-left: -120px;
  
}
.section-container {
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
}
.content-container {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 20px; /* odstęp między tekstem a obrazem */
  padding: 20px;
  margin-bottom: -20px;
  margin: 0;
  text-align: left;
}
.image-section {
    order: -1; /* obrazek pojawi się pierwszy */
    padding-bottom: 15px;
  }
.text-section {
    padding-right: 0;
  }
.white-bar-dol {
	display: none;
}
}

.text-section {
  flex: 2; /* zajmuje 2 części */
  font-size: 16px;
  font-weight:400;
  color: #333;
}
.text-section a {
  color: orange; /* kolor pomarańczowy */
  text-decoration: none; /* bez podkreślenia domyślnie */
  transition: text-decoration 0.3s ease; /* płynna zmiana podkreślenia */
}

.text-section a:hover {
  text-decoration: underline; /* podkreślenie po najechaniu */
}

.image-section {
  flex: 1; /* zajmuje 1 część */
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* opcjonalnie zaokrąglone rogi */
}

/* Responsywność - na mniejszych ekranach układ pionowy */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column;
  }

  .text-section,
  .image-section {
    flex: none;
    width: 100%;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
  }
}
ul.checklist {
  list-style: none; /* usuwa domyślne kropki */
  padding-left: 0;  /* usuwa domyślny padding */
  margin-left: 0;   /* usuwa domyślny margines */
}
.check-icon {
  color: black;
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}

.content-container-kontakt {
  display: flex;
  width: 90%;
  box-sizing: border-box;
  gap: 105px; /* odstęp między tekstem a obrazem */
  padding: 20px;
  align-items: flex-start; /* wyrównanie do góry */
  margin-left: 130px;
  text-align: justify;
}

@media (max-width: 768px) {
.content-container-kontakt  {
flex-direction: column;
  width: 100%;
  gap: 20px; /* odstęp między tekstem a obrazem */
  margin-left: 0;
  text-align: left;
}
}
.kontakt-maly {
  color: rgba(77,100,148,1);       /* kolor czerwony */
  font-size: 14px;      /* większy rozmiar czcionki */
}
.kontakt-sredni {
  font-size: 16px;
  font-weight: 400;      /* większy rozmiar czcionki */
}
.kontakt-duzy {
  font-size: 24px;      /* większy rozmiar czcionki */
  font-weight: bold;    /* opcjonalnie pogrubienie */
}
.contact-form {
  max-width: 500px;
  font-family: 'Red Rose', sans-serif;
  color: #333;
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(77, 100, 148, 0.3);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #4d6494;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  border-color: rgba(77, 100, 148, 1);
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  user-select: none;
}

.checkbox-container input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px; /* wyrównanie checkboxa do tekstu */
  cursor: pointer;
  margin-top: 20px;
}

.checkbox-text {
  font-size: 12px;
  line-height: 1.3;
  color: #333;
  max-width: calc(100% - 28px); /* 100% minus szerokość checkboxa i odstęp */
  user-select: text;
  font-weight: 400;
}
.checkbox-text a {
  color: #000;       
  text-decoration: none;
  font-weight: 700;
}
.contact-form button {
  background-color: rgba(77, 100, 148, 1);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 18px;
  font-family: 'Red Rose', cursive;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100px;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  border: 2px solid rgba(60, 80, 120, 1);
}

.contact-form button:hover {
            background-color: rgba(34, 34, 34, 0);
	    border: 2px solid rgba(60, 80, 120, 1);
            color: rgba(60, 80, 120, 1);
}

/* Komunikaty błędów */
input:invalid, textarea:invalid {
  border-color: #e74c3c;
}

input:invalid:focus, textarea:invalid:focus {
  outline-color: #e74c3c;
}
/* Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51,51,51,0.95);
  color: #fff;
  padding: 14px;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner__text a { color: #f39c12; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; align-items: center; }

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
}
.cookie-modal__content {
  background: #fff;
  color: #222;
  padding: 20px;
  border-radius: 10px;
  max-width: 520px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
}
.cookie-row { display:flex; gap:12px; align-items:flex-start; padding:10px 0; }
.cookie-desc { font-size: 13px; color: #555; margin-top:4px; }
.cookie-modal__actions { display:flex; gap:8px; justify-content:flex-end; margin-top:12px; }

/* Floating button */
.cookie-settings-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 10002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(77,100,148,1);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(77,100,148,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* Buttons */
.btn { background:#f39c12; color:#fff; padding:8px 12px; border-radius:6px; border:none; cursor:pointer; }
.btn--outline { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.3); }
.btn--link { background:transparent; color:#fff; text-decoration:underline; border:none; padding:6px; }

/* Utility: show */
.show { display: flex !important; }

.back-to-top {
  position: fixed;
  right: 16px;            /* prawa dolna strona */
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(77,100,148,1);
  color: #fff;
  font-size: 20px;
  display: none;          /* domyślnie ukryty */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 6px 16px rgba(77,100,148,0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}

/* Gdy ma być widoczny */
.back-to-top.show {
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
}

/* Mały efekt przy najechaniu */
.back-to-top:hover {
  background: rgba(63,84,130,1);
}

/* Możesz ukryć na urządzeniach mobilnych lub zmniejszyć rozmiar */
@media (max-width: 480px) {
  .back-to-top { width: 40px; height: 40px; font-size: 18px; right: 12px; bottom: 12px; }
}

.full-width-text-container {
  width: 90%;           /* zajmuje 90% szerokości okna przeglądarki */
  margin: 0 auto;
  padding: 20px;         /* opcjonalne odstępy wewnętrzne */
  box-sizing: border-box; /* uwzględnia padding w szerokości */
  background-color: #ffffff; /* opcjonalne tło dla wyróżnienia */
  color: #333;           /* kolor tekstu */
  font-size: 16px;       /* rozmiar tekstu */
  font-weight: 400;
}
.full-width-text-container a {
  color: orange; /* kolor pomarańczowy */
  text-decoration: none; /* bez podkreślenia domyślnie */
  transition: text-decoration 0.3s ease; /* płynna zmiana podkreślenia */
}
.error {
  border-color: red !important;
  outline: none;
}
.error-message {
      color: red;
      font-size: 0.9em;
      margin-top: -10px;
      margin-bottom: 10px;
    }

    /* Kontener na komunikaty po wysłaniu */
    #formMessage {
      max-width: 500px;
      margin: 20px auto;
      padding: 15px;
      border-radius: 6px;
      font-family: 'Red Rose', sans-serif;
      font-size: 16px;
      display: none;
      text-align: center;
    }

    #formMessage.success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }

    #formMessage.error {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
.stopka-text-lewy {
	color: #ffffff;
	width: 40%; 
	display: flex; 
	flex-direction: column; 
	align-items: flex-start; 
	gap: 6px; 
	padding-left: 10px;
	font-size: 14px;
	font-weight: 400;
}

.stopka-text-prawy {
	color: #ffffff;
	width: 40%; 
	display: flex; 
	justify-content: 
	flex-end; 
	align-items: center;
	padding-right: 10px;
	font-size: 14px;
	font-weight: 400;
}

@media (max-width: 768px) {
.stopka-text-lewy {
	color: #ffffff;
	width: 40%; 
	display: flex; 
	flex-direction: column; 
	align-items: flex-start; 
	gap: 6px; 
	padding-left: 10px;
	font-size: 14px;
	font-weight: 400;
}
.stopka-text-prawy {
	color: #ffffff;
	width: 40%; 
	display: flex; 
	justify-content: 
	flex-end; 
	align-items: center;
	padding-right: 10px;
	font-size: 14px;
	font-weight: 400;
}
}
