/* Ustawienia ogólne */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* zapobiega przewijaniu poziomemu */
    scroll-behavior: smooth;
}

body {
  font-family: "Barlow Condensed", sans-serif;
  background-color: #99BBA0;
  color: #F5F1E7;
}

/* --- GLOBALNE / HEADER --- */
header {
  position:fixed;
  top: 0;
  width: 100%;
  background-color: #99BBA0;
  box-shadow: 0 6px 6px rgba(0,0,0,0.25);
  z-index: 999;
  font-family: "Barlow Condensed", sans-serif;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 58px;
}

/* --- DESKTOP LINKI --- */
nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #F5F1E7;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: #F5F1E7;
  transition: width .3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* --- HAMBURGER --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #F5F1E7;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #99BBA0;
  width: 100%;
  padding: 15px 1.5rem;
}

.mobile-menu a {
  padding: 14px 0;
  text-decoration: none;
  color: #F5F1E7;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0%;
  background: #F5F1E7;
  transition: .3s ease;
}

.mobile-menu a:hover::after {
  width: 100%;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  background: #F5F1E7;
}
/* HERO SECTION */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0 0 0;
  box-sizing: border-box;
}

.hero-container {
  width: 100%;
  height: 100vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* ważne: zapobiega wychodzeniu elementów */
}

.hero-content {
  width: 90%;
  height: 70%;
  background: rgba(245, 241, 231, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
    border: solid 1px grey;
  padding: 3rem 2.5rem;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Napis główny */
.hero-content h1 {
  font-family: "Belgiano Serif", serif;
  font-size: 160px;
  color: #F5F1E7;
  margin: 0;
  letter-spacing: 6px;
  text-align: center;
  line-height: 0.8; /* mniejszy odstęp między liniami */
}

.hero-content p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  color: #F5F1E7;
  margin: 0 0 2rem 0; /* tylko 5px odstępu nad i 2rem pod */
  text-align: center;
}

/* Przycisk */
.hero-button {
  display: inline-block;
  background-color: #99BBA0;
 color: #F5F1E7;
  font-family: "Barlow Condensed";
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0.8rem 3rem;
  border-radius: 50px;
  transition: 0.3s ease;
}

.hero-button:hover {
  opacity: 0.85;
}

/* SEKCJA O MNIE */
.about {
  background-color: #F5F1E7; /* Twój drugi kolor */
  color: #1A1A1A;
  padding: 6rem 0 2rem 0; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-only {
  display: none;
}
.about-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap; /* dla responsywności */
}

/* Tekst */
.about-text {
  flex: 1 1 45%;
  min-width: 300px;
    padding-right: 20px;
}

.about-text h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: #1A1A1A;
}

.about-text p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
}
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.about-text strong {
  font-weight: 600;
}

/* Zdjęcie */
.about-photo {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo img {
  width: 80%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
  margin-top: 40px;
}
.o-mnieopis {
  width: 90%;
  background-color: #99BBA0;
 color: #F5F1E7;
  padding: 2rem 1rem 4rem 1rem;
}

.o-mnieopis-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.o-mnieopis-tresc {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.o-mnieopis-tytul {
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #F5F1E7; /* Jasny kolor tekstu */
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lista-szkolen {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  line-height: 1.4;
}

.lista-szkolen li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.lista-szkolen li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}
.metody-pracy {
  width: 100%;
  background-color: #F5F1E7; /* jasne tło */
  color: #2E4A34; /* ciemny tekst */
  padding: 4rem 2rem;
  box-sizing: border-box;
}

.metody-pracy-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* kolumny obok siebie na desktopie */
  flex-direction: row; /* obrazek po lewej, tekst po prawej */
  align-items: flex-start;
  box-sizing: border-box;
}

.metody-pracy-image {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 150px;
}

.metody-pracy-image img {
  max-width: 100%;
  height: 500px;
  border-radius: 8px;
}

.metody-pracy-content {
  flex: 0 0 60%;
  font-size: 1.15rem;
  line-height: 1.6;
  box-sizing: border-box;
}

.metody-pracy-content h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}
/* --- SEKCJA ACT --- */
.act {
  background-color: #99BBA0;
  color: #F5F1E7;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.act-container {
  width: 90%;
  max-width: 1000px;
  text-align: left;
}

.act h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  color: #F5F1E7;
}

.act p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #F5F1E7;
}

/* --- OBRAZKI ACT --- */
.act-images {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 4rem auto 0 auto;
}

.act-main {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Obrazek nakładający się */
.act-overlay {
  position: absolute;
  top: -60px;
  left: 20px;
  width: 100%;
  opacity: 0;
  transform: translateY(-80px);
  border-radius: 20px;
  animation: actFadeIn linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 80%;
}

/* --- ANIMACJA SCROLL --- */
@keyframes actFadeIn {
  from {
    opacity: 0;
    transform: translateY(-80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* KONTENER OBRAZKA MIĘDZY SEKCJAMI */
.between-wrapper {
  position: relative;
  width: 100%;
  height: 0; /* nie zajmuje miejsca w pionie */
}

/* OBRAZEK DEKORACYJNY */
.between-image {
  position: absolute;
  top: 0;
  right: 25%;
  width: 20%;
  height: auto;
  transform: translateY(-50%); /* połowa obrazka na jednej, połowa na drugiej sekcji */
  z-index: 10;
  pointer-events: none;
}
 #rodzajewsparcia {
     height: 0;
 }
/* SEKCJA WSPARCIE */
.wsparcie {
  background: #F5F1E7; /* Twój jasny kolor */
  padding: 3rem 0;
  color: #1A1A1A;
}

.wsparcie-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.wsparcie-container h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: #1A1A1A;
}

/* GRID – 4 karty w rzędzie */
.wsparcie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* KARTA */
.wsparcie-card {
  background: white;
  border: 2px solid #1A1A1A;
  border-radius: 20px;
  padding: 1.5em;
  text-align: left;
  display: flex;
  flex-direction: column;
  
 
}

.wsparcie-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.wsparcie-card h3 {
  font-size: 1.4rem;
  font-family: "Belgiano Serif", serif;
  margin-bottom: 0.7rem;
}

.wsparcie-card p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* przycisk */
.wsparcie-card .czytaj {
  margin-top: auto;
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 600;
  border: 2px solid #1A1A1A;
  padding: 8px 14px;
  border-radius: 25px;
  display: inline-block;
  transition: 0.3s ease;
  font-family: "Barlow Condensed", sans-serif;
}

.wsparcie-card .czytaj:hover {
  background: #99BBA0;
  color: #F5F1E7;
}
.tit-section {
  width: 100%;
  padding: 0 0 50px 0; /* odstęp od góry i dołu sekcji */
  display: flex;
  justify-content: center; /* wyśrodkowanie poziome */
  background: #99BBA0; /* Twoje zielone tło */
}

.tit-section .tit-img {
  width: 60%;          /* szerokość 60% sekcji */
  height: auto;        /* proporcje zachowane */
  display: block;
  object-fit: contain; /* zachowuje proporcje, nie rozciąga */
}
/* PASTELKOWE TŁA KART */
.pastel-1 { background: #F5F1E7; } /* delikatny róż */
.pastel-2 { background: #F5F1E7; } /* pastelowa mięta */
.pastel-3 { background: #F5F1E7; } /* bardzo jasny żółty */
.pastel-4 { background: #F5F1E7; } /* lekki błękit */

.wsparcie-opisy {
  padding: 7rem 1rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.wsparcie-opisy h3 {
  font-family: "Belgiano Serif", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wsparcie-opisy p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.separator {
  width: 100%;
  height: 1px;
  background: #F5F1E7;
  margin: 2rem 0;
}

/* początkowo treść ukryta */
.opis-tresc {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* po kliknięciu */
.opis-tresc.active {
  max-height: 2000px; /* duża wartość, żeby pomieścić cały tekst */
}

/* przycisk plus/minus */
.toggle-btn {
  background: none;
  border: 2px solid #F5F1E7;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
   color: #F5F1E7;
}

.toggle-btn.active {
  transform: rotate(45deg);
   color: #F5F1E7;
}
.firma {
  width: 100%;
  background: #F5F1E7; /* Twoje jasne tło */
  padding: 6rem 0;
  color: #1A1A1A;
}

.firma-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}

/* LEWA KOLUMNA */

.firma-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* pionowy prostokąt */
.foto-vertical img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
}

/* kwadrat */
.foto-square {
  width: 80%;               /* lekko przesunięte */
  margin-left: 20%;
}

.foto-square img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
}

/* PRAWA KOLUMNA */

.firma-right {
  flex: 1.5;
}

.firma-right h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.firma-right h3 {
  font-family: "Belgiano Serif", serif;
  font-size: 1.6rem;
  margin-top: 2rem;
}

.firma-right p,
.firma-right ul,
.firma-right ol {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.firma-right ul,
.firma-right ol {
  padding-left: 1.2rem;

}
.cytat-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* obrazek wypełnia wysokość */
  height: 500px; /* dopasowanie do treści */
}

/* LEWA KOLUMNA: cytat zajmuje 70% */
.cytat-left {
  flex: 0 0 70%; /* 70% szerokości */
  display: flex;
  align-items: center; /* pionowe wyśrodkowanie cytatu */
  padding: 3rem;
}

.cytat-left blockquote {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.5;
  margin: 0;
}

/* PRAWA KOLUMNA: obrazek zajmuje resztę i jest bliżej prawej krawędzi */
.cytat-right {
  flex: 0 0 30%; /* 30% szerokości */
  display: flex;
  justify-content: center; /* obrazek przy prawej krawędzi */
}

.cytat-right img {
  height: 120%;         /* większa wysokość niż sekcja */
  object-fit: cover;
  position: relative;
  z-index: 2;

  /* efekt wystawania */
  transform: translate(10%, -10%);
  /* 10% w prawo, 20% do góry — obrazek będzie też wystawał w dół */
}
.highlight {
  position: relative;
  display: inline-block;
  color: inherit; /* dziedziczy jasny kolor tekstu */
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em; /* lekko pod tekstem */
  width: 100%;
  height: 4px; /* grubość linii */
  background: black;
  transform: rotate(-2deg); /* lekko nachylona linia */
  border-radius: 2px; /* lekko zaokrąglona */
}
/* SEKCJA FAQ */
.faq {
  background-color: #F5F1E7; /* drugi kolor */
  color: #1A1A1A;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  width: 90%;
  max-width: 800px;
}

.faq h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: #1A1A1A;
}

/* Pojedyncze pytanie */
.faq-item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.2);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

/* Nagłówek pytania */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #1A1A1A;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  padding-right: 2rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* Odpowiedź */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 0.8rem;
}
/* SEKCJA OPINIE */
.opinie {
  background-color: #99BBA0; /* jasne tło */
  color: #1A1A1A;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opinie-container {
  width: 90%;
  max-width: 1200px;
  text-align: center;
  overflow: hidden;
}

.opinie-header {
  display: flex;
  align-items: center;
  justify-content: center; /* całość wyśrodkowana w poziomie */
  gap: 30px; /* odstęp między tytułem a obrazkiem */
  margin-bottom: 3rem;
  
}

.opinie-header h2 {
  font-family: "Belgiano Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  color: #F5F1E7;
}

/* Obrazek po prawej, wysokość = 70% wysokości tytułu */
.opinie-decor {
  height: 5.7em; /* 0.7em = 70% wysokości font-size h2 */
  object-fit: contain;
}

/* Slider */
.opinie-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}


.opinie-track {
  display: flex;
  transition: transform 1s ease;
}
/* Pojedyncza opinia */
.opinia {
  flex: 0 0 33.333%;
  opacity: 0.4;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 2rem;
  box-sizing: border-box;
  transition: opacity 0.6s ease;
   color: #F5F1E7;
}

/* Środkowa opinia */
.opinia.active {
  opacity: 1;
  font-weight: 600;
  transform: scale(1.02);
}
/* KONTAKT */
.kontakt {
  background-image:url(tlokontakt.jpg);  /* jasne tło */
  color: #333;          /* ciemny tekst */
  padding: 5rem 0 0 0;
}

/* Tytuł całej sekcji */
.kontakt-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  color: #222;
  font-weight: 600;
}

.kontakt-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* LEWA KOLUMNA – ZDJĘCIE */
.kontakt-left {
  flex: 1;
  padding-top: 100px;
}

.kontakt-img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  margin-left: 50px;
}

/* ŚRODKOWA – dane kontaktowe */
.kontakt-center {
  flex: 1;
  text-align: center;
  padding-top: 40px;
}

.kontakt-center p {
  margin-bottom: 1.2rem;
  font-size: 20px;
  line-height: 1.2;
}

/* Linki */
.kontakt-center a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

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

/* PRAWA – widget */
.kontakt-right {
  flex: 1;
  min-height: 320px;
  overflow: hidden;         /* ukrywa nadmiar */
  max-height: 600px;        /* maksymalna wysokość widgetu */
}

/* jeśli widget tworzy jakiś kontener nadrzędny */
.kontakt-right .zl-widget,
.kontakt-right iframe,
.kontakt-right .widget-container {
  max-height: 100%;
  height: auto;
  transform: scale(0.85);    /* opcjonalnie: zmniejszenie całego widgetu */
  transform-origin: top right;
}

.footer {
  width: 100%;
  background-color: #99BBA0;
  margin: 1rem 0;
  padding: 0;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-link {
  color: #F5F1E7;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* dolny tekst */
.footer-bottom {
  margin-top: 1rem;
}

.footer-text {
  position: relative;
  display: inline-block;
  font-size: 0.85rem;
  color: #F5F1E7;
  padding-top: 0.6rem;
}

/* linia nad tekstem – 80% szerokości napisu */
.footer-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background-color: #F5F1E7;
}

.footer-brand {
  font-size: inherit;
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #99BBA0; /* Twoje zielone tło */
  color: #F5F1E7;            /* Jasny tekst */
  padding: 0.8rem 2rem;
  display: flex;
  flex-direction: column;      /* pionowe ułożenie */
  align-items: center;         /* wyśrodkowanie w poziomie */
  text-align: center;          /* wyśrodkowanie tekstu */
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  font-family: "Barlow Condensed", sans-serif;
}

#cookie-banner p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.2;
}

#cookie-banner button {
  background-color: #F5F1E7;
  color: #1A1A1A;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}

#cookie-banner button:hover {
  background-color: #e0e0e0;
}

/* Responsywność */
@media (max-width: 1000px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

.hero-container {
    height: 100vh;
  }

  .hero-content {
    width: 90%;
    padding: 2rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    text-align: center;
    font-size: 1.2rem;
  }
  .about-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }
.hide-mobile {
    display: none;
  }
.mobile-only{
    display: inline;
  }
  .about-text p {
    text-align: left; /* zostaje wyrównany do lewej */
  }

  .about-photo img {
    width: 100%;
    margin-bottom: 0;

  }
 .o-mnieopis-container {
    width: 95%;
    padding: 0;
  }

  .o-mnieopis-tresc {
    font-size: 1rem;
    line-height: 1.5;
    margin-right: 1rem;
  }

  .o-mnieopis-tytul {
    font-size: 2rem;
    text-align: center;
    margin: 1.5rem 0 2rem 0;
  }

  .lista-szkolen {
    margin-left: 1rem;
    margin-right: 2rem;
  }

  .lista-szkolen li {
    padding-left: 1rem;
    font-size: 1rem;
    line-height: 1.4;
  }
    .metody-pracy-container {
    flex-direction: column; /* kolumny jedna pod drugą */
    gap: 1.5rem; /* mniejszy odstęp */
    margin: 0;
    padding: 0;
  }

  .metody-pracy-content,
  .metody-pracy-image {
    flex: 0 0 100%; /* pełna szerokość */
    margin: 0;
    padding: 0 1rem; /* opcjonalnie padding wewnętrzny */
  }

  .metody-pracy-content {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .metody-pracy-content h2 {
    font-size: 2rem;
    text-align: left;
    margin: 1.5rem 0 1rem 0;
  }

  .metody-pracy-image img {
    width: 100%; /* obrazek nie wychodzi poza ekran */
    height: auto;
  }
.act-container {
    width: 90%;
  }

  .act h2 {
    font-size: 2rem;
  }

  .act p {
    font-size: 1.1rem;
  }
.between-image {
    width: 48%;
    right: 20%;
  }
   .wsparcie {
    padding: 2rem 0;
  }

  .wsparcie-container h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .wsparcie-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wsparcie-card {
    padding: 1.2rem;
  }

  .wsparcie-card img {
    height: 150px;
  }

  .wsparcie-card h3 {
    font-size: 1.3rem;
  }

  .wsparcie-card p {
    font-size: 1rem;
    line-height: 1.35;
  }

  .wsparcie-card .czytaj {
    font-size: 1rem;
    padding: 8px 14px;
  }
   .wsparcie-opisy {
    padding: 3rem 2rem;
    max-width: 100%;
  
  }
  #pole{
    height: 40px;
  }
  .wsparcie-opisy h3 {
    display: flex;
    justify-content: flex-start; /* NIE wypycha na max prawo */
    align-items: center;
    gap: 12px; /* odstęp między tekstem a + */
     flex-wrap: wrap;     /* pozwala tekstowi się złamać */
    font-size: 18px;
    
  }

  .opis-blok {
    padding: 0.5rem 0;
  }

  .toggle-btn {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
    margin-left: 0; /* pewność, że nic nie odpycha */
    flex-shrink: 0;      /* nie pozwala guzikowi wyjść poza ekran */
  }

  .wsparcie-opisy p {
    font-size: 1rem;
    line-height: 1.45;
    padding-right: 2rem;
  }

  .separator {
    margin: 1.6rem 0;
  }

  /* żeby tekst nie przylegał do brzegów ekranu */
  .opis-tresc {
     padding: 0 2rem 0 1rem; 
  }
  .firma {
  width: 100%;
  background: #F5F1E7; /* Twoje jasne tło */
  padding: 0 0 1rem 0;
  color: #1A1A1A;
}
   .firma-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* --- USTAWIANIE KOLEJNOŚCI --- */
  .foto-vertical { order: 1; } /* zdjęcie A u góry */
  .firma-right  { order: 2; } /* tekst na środku */
  .foto-square  { order: 3; } /* zdjęcie B na dole */

  /* --- WYGLĄD --- */

  /* zdjęcia szeroko */
  .foto-square img {
    width: 80%;
    margin: 0 auto;
    border-radius: 20px;
  }

  /* usuwamy przesunięcia zdjęcia B */
  .foto-square {
    width: 100%;
    margin: 0;
  
  }
  .foto-vertical img  {display: none;
  }
 .foto-square {
  width: 100%;
  margin: 0;
  display: flex;            /* USTAWIAMY FLEXA */
  justify-content: center;  /* WYŚRODKOWANIE ZDJĘCIA */
}
  /* tekst na pełnej szerokości */
  .firma-right {
    width: 100%;
    padding: 0 1rem;
    margin-bottom: -5rem;
  }

  /* żeby .firma-left nie układała zdjęć obok siebie */
  .firma-left {
    display: contents; /* zdjęcia zachowują się jak osobne elementy */
  }
.opinia {
    flex: 0 0 100%;     /* jedna opinia na ekranie */
    opacity: 1;         /* pełna widoczność */
    font-size: 1rem;
    padding: 1.5rem;
    margin-top: 0;
  }
/* LEWA KOLUMNA: cytat zajmuje 70% */
.cytat-left {
  flex: 0 0 60%;
  /* 70% szerokości */
  display: flex;
  align-items: center;
  /* pionowe wyśrodkowanie cytatu */
  padding: 1rem;
}

.cytat-left blockquote {
  font-family: "Belgiano Serif", serif;
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

/* PRAWA KOLUMNA: obrazek zajmuje resztę i jest bliżej prawej krawędzi */
.cytat-right {
  flex: 0 0 40%;
  /* 30% szerokości */
  display: flex;
  justify-content: center;
  /* obrazek przy prawej krawędzi */
}
  .kontakt {
  background-image:url(tlokontakt_tel.jpg);  /* jasne tło */
  color: #333;          /* ciemny tekst */
  padding: 5rem 0 0 0;
     text-align: center; /* upewnia się, że wszystko w sekcji jest środkowane */
}
  .kontakt-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center; /* NOWE — idealne wyśrodkowanie zawartości */
  }

  /* KOLEJNOŚĆ */
  .kontakt-center { order: 1; } /* dane kontaktowe */
  .kontakt-right { order: 2; }  /* widget */
  .kontakt-left { order: 3; }   /* zdjęcie na dole */

  /* TEKST NA PEŁNĄ SZEROKOŚĆ */
  .kontakt-center {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    align-content: center;
  }

  .kontakt-center p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  /* WIDGET NA PEŁNĄ SZEROKOŚĆ */
  .kontakt-right {
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 0 1rem;
  }

  .kontakt-right iframe,
  .kontakt-right .zl-widget,
  .kontakt-right .widget-container {
    transform: none !important;
    width: 100% !important;
    max-width: 100%;
  }

  /* ZDJĘCIE NA PEŁNĄ SZEROKOŚĆ */
  .kontakt-left {
    width: 100%;
    padding: 0;
    text-align: center;
    display: none;
  }

  .kontakt-img {
    width: 80%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }
   #cookie-banner {
    padding: 1rem 1rem; /* mniejsze odstępy po bokach */
    font-size: 0.95rem;
  }

  #cookie-banner p {
    margin-bottom: 0.8rem;
    line-height: 1.3;
    word-break: break-word; /* tekst się nie wychodzi poza ekran */
    padding: 0 2rem;
  }

  #cookie-banner button {
    width: 100%;          /* przycisk na całą szerokość */
    max-width: 100px;     /* limit szerokości */
    padding: 0.8rem 0;
    font-size: 0.7rem;
    border-radius: 25px;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .wsparcie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .wsparcie-card img {
    height: 160px;
  }
    .wsparcie-opisy {
    padding: 3rem 2rem;
    max-width: 100%;
  }

  .wsparcie-opisy h3 {
    display: flex;
    justify-content: flex-start; /* NIE wypycha na max prawo */
    align-items: center;
    gap: 0.7rem; /* odstęp między tekstem a + */
     flex-wrap: wrap;     /* pozwala tekstowi się złamać */
    
  }

  .opis-blok {
    padding: 0.5rem 0;
  }

  .toggle-btn {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
    margin-left: 0; /* pewność, że nic nie odpycha */
    flex-shrink: 0;      /* nie pozwala guzikowi wyjść poza ekran */
  }

  .wsparcie-opisy p {
    font-size: 1rem;
    line-height: 1.45;
    padding-right: 2rem;
  }

  .separator {
    margin: 1.6rem 0;
  }

  /* żeby tekst nie przylegał do brzegów ekranu */
  .opis-tresc {
     padding: 0 2rem 0 1rem; 
  }
}
