* {
    margin: 0;
    padding  :        0px;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  line-height: 1.6;

    color: #333;

    background-color: #fafafa;
}

.kontener-główny     {
     max-width: 1200px;
   margin: 0 auto;
     padding: 0 20px;


}

.główna-nawigacja {

	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	    padding  : 1rem 0;
	    position: fixed;
	   top:0;
	   width: 100%;
	  z-index    : 1000;
	  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nawigacja-kontener{
     margin: 0 auto;
  align-items: center;
  padding: 0 20px;
   justify-content: space-between;
  display:    flex;
  max-width: 1200px;
	}

.logo-sekcja .logo-obraz {
        height: 45px;
  width: auto;
	
}

.menu-lista {
  display: flex;
  list-style: none;
   gap: 2rem;
}

.menu-lista a{
    color: white;
   text-decoration: none;
   font-weight: 500;
  transition: color 0.3s ease;
  padding :   0.5rem 1rem;
   border-radius    :     5px;
}

.menu-lista a:hover 
 {
    color: #3498db;
	  background-color: rgba(255,255,255,0.1);
}

.menu-przycisk {
    display: none;
  background: none;
   border: none;
  cursor: pointer;
   flex-direction: column;
   padding: 5px;
}

.burger-linia {
 width: 25px;
  height: 3px;
    background-color: white;
  margin     :  3px 0;
   transition: 0.3s;
  border-radius: 2px;
}

.główny-header {
    margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-kontener {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
	display: grid;
   grid-template-columns  :      1fr 1fr;
  gap: 3rem;
  align-items: center;

}

.główny-tytuł {
  font-size: 3.2rem;
  font-weight: 700;
					margin-bottom    :      1.5rem;
  line-height: 1.2;
}

.hero-opis {
  font-size  :        1.2rem;
   margin-bottom: 2rem;
	line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.hero-akcje {
   display: flex;
    gap: 1rem;
    flex-wrap: wrap;
} 

.główny-przycisk, .drugi-przycisk {
   padding: 1rem 2rem;
	   border-radius: 50px;
	   text-decoration: none;
	    font-weight: 600;
	   transition: all 0.3s ease;
		display: inline-block; 

}

.główny-przycisk {
  background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
  box-shadow: 0 4px 15px rgba(243,156,18,0.3);

}

.główny-przycisk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243,156,18,0.4);
}

.drugi-przycisk {
  background: transparent;
          color: white;
  border :  2px solid white;
}

.drugi-przycisk:hover {
   background: white;
   color: #667eea;
}

.hero-obraz {
   width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.usługi-sekcja {
   padding: 5rem 0;
   background-color: white;
}

.sekcja-nagłówek {
    text-align: center;
    font-size  :   2.5rem;
   margin-bottom :      3rem;
  color: #2c3e50;
   position: relative;
}

.sekcja-nagłówek::after {
  content: '';
    position: absolute;
   bottom: -10px;
	 left: 50%;
  transform: translateX(-50%);
  width: 80px;
   height: 4px;
  background: linear-gradient(45deg, #3498db, #2980b9);
       border-radius: 2px;
}

.usługi-siatka {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usługa-karta {
  background: white;
    border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	 border: 1px solid #f0f0f0; 

}

.usługa-karta:hover {
     transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	}

.usługa-obraz {
   width: 100%;
  height: 200px;
  object-fit: cover;
    border-radius  :  10px;
   margin-bottom: 1.5rem; 

}

.usługa-karta h3     {
  font-size: 1.4rem;
  margin-bottom: 1rem;
    color  :   #2c3e50;
}

.usługa-karta p {
	   color: #666;
   line-height: 1.6;

}

.proces-sekcja {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.proces-treść h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
 color   :     #2c3e50;

}

.proces-etapy {
   display: grid;
       gap: 2rem;
}

.etap-element {
    display   :  flex;
       align-items: center;
  gap: 2rem;
    background: white;
    padding:     2rem;
     border-radius  :   15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 

}

.etap-numer {
   font-size: 2rem;
  font-weight: bold;
    color: white;
  background: linear-gradient(45deg, #3498db, #2980b9);
   width: 60px;
  height: 60px;
      border-radius: 50%;
   display: flex;
	align-items   :   center;
    justify-content: center;
   flex-shrink: 0;
}

.etap-szczegóły h3 {

   font-size: 1.3rem;
  margin-bottom: 0.5rem;
   color: #2c3e50;
     }

.etap-szczegóły p {
   color     :      #666;

		line-height     :      1.6;
}

.cta-sekcja {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-treść {
  text-align: center;
}

.cta-treść h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-treść p {
  font-size: 1.2rem;

		margin-bottom: 2rem;

	   max-width: 600px;

	    margin-left  :       auto;

	  margin-right: auto;

	    line-height: 1.7;


}

.cta-przycisk {
  display     :inline-block;
    padding: 1.2rem 3rem;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: white;
  text-decoration: none;
     border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243,156,18,0.3);
}

.cta-przycisk:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243,156,18,0.4);
}

.cta-wizual {
  text-align     :  center;
    margin-top: 3rem;
}

.cta-obraz {
     max-width: 500px;
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	}

.o-nas-preview {
  padding: 5rem 0;
   background-color: white;
}

.o-nas-preview h2

{
    text-align    :      center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.korzyści-siatka {
  display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.korzyść-karta {
  text-align:center;
	 padding: 2rem;
   background: #f8f9fa;
  border-radius: 15px;
   transition:  transform 0.3s ease;
}

.korzyść-karta:hover {
  transform: translateY(-5px);
}

.korzyść-karta h3 {
   font-size: 1.3rem;
   margin-bottom     :      1rem;
   color  :      #2c3e50;
}

.korzyść-karta p {
	 color: #666;
  line-height    :   1.6;
}

.kontakt-sekcja     {
   padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.kontakt-sekcja h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.kontakt-kontener {
      display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
  margin: 0 auto;
}

.kontakt-info{
    background: white;
  padding: 2rem;
	border-radius: 15px;
    height: fit-content;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kontakt-info h3 {
    font-size: 1.5rem;
   margin-bottom: 2rem;
	color: #2c3e50;
}

.info-element {
  margin-bottom: 1.5rem;
}

.info-element strong {
   display: block;
  color: #2c3e50;
	 margin-bottom: 0.5rem;
}

.info-element p {
   color   :  #666;
         line-height: 1.6; 

}

.kontakt-formularz {

  background: white;
	padding     :  2rem;
   border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}

.pole-grupa {

	  margin-bottom: 1.5rem;


}


.pole-grupa label {
   display: block;
	    margin-bottom: 0.5rem;
	   color  :  #2c3e50;
		font-weight: 500;
}

.pole-grupa input,
.pole-grupa select,
.pole-grupa textarea {
       width: 100%;

	  padding: 0.8rem;

	  border: 2px solid #e1e1e1;

		border-radius: 8px;

	  font-size: 1rem;

	   transition: border-color 0.3s ease;
}

.pole-grupa input:focus,
.pole-grupa select:focus,
.pole-grupa textarea:focus  
  {
   outline: none;
   border-color: #3498db;
}

.formularz-przycisk {
   width: 100%;
   padding: 1rem;
  background: linear-gradient(45deg, #3498db, #2980b9);
               color: white;
    border: none;
  border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
  transition :       all 0.3s ease;
}

.formularz-przycisk:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.główny-footer


{
   background: #2c3e50;
  color  :     white;
   padding: 3rem 0 1rem;
}

.footer-kontener {
   max-width: 1200px;
       margin: 0 auto;
       padding   :        0 20px;
}

.footer-główny     {
	display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
       margin-bottom: 2rem;
}

.footer-logo-obraz {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h4,
.footer-linki h4,
.footer-prawne h4{
   margin-bottom: 1rem;
   color: #3498db;
}

.footer-info p {
    margin-bottom: 0.5rem;
  color: #bdc3c7;
}

.footer-linki ul,
.footer-prawne ul {
   list-style: none;
}

.footer-linki a,
.footer-prawne a {
   color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-linki a:hover,
.footer-prawne a:hover {
 color: #3498db;
}

.footer-bottom {
	padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
    border-top: 1px solid #34495e;
}@media (max-width: 768px) {
    .menu-przycisk {
        display: flex;
    }

    .menu-lista {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .menu-lista.aktywne {
        left: 0;
    }

    .menu-lista li {
        margin: 1rem 0;
    }

    .hero-kontener {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .główny-tytuł {
        font-size: 2.5rem;
    }

    .hero-akcje {
        justify-content: center;
    }

    .kontakt-kontener {
        grid-template-columns: 1fr;
    }

    .etap-element {
        flex-direction: column;
        text-align: center;
    }

    .proces-etapy {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .główny-tytuł {
        font-size: 2rem;
    }

    .hero-opis {
        font-size: 1.1rem;
    }

    .sekcja-nagłówek {
        font-size: 2rem;
    }

    .usługi-siatka {
        grid-template-columns: 1fr;
    }

    .korzyści-siatka {
        grid-template-columns: 1fr;
    }
}.about-hero {
    margin-top: 80px;
  padding: 3rem 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
  text-align: center; 
	
}

.about-hero h1 {
    font-size: 2.8rem;
   margin-bottom: 1.5rem;
  font-weight: 700;


}

.about-hero p  
  {
   font-size: 1.2rem;
  max-width: 800px;
   margin: 0 auto;
    line-height: 1.7;
  color: rgba(255,255,255,0.9); 

}

.historia-sekcja {
    padding: 5rem 0;
    background-color: white;
}



.historia-treść {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items   : center;
} 

.tekst-blok h2 {
    font-size   :     2.2rem;
    margin-bottom: 2rem;
  color: #2c3e50;
}

.tekst-blok p {

       line-height: 1.7;
  color: #666;
  font-size: 1.1rem;
    margin-bottom: 1.5rem;


}

.historia-obraz {
   width :  100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.zespół-sekcja {

	   padding:  5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);}  

.zespół-siatka {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
	
}

.członek-karta {
    background: white;
    padding: 2.5rem;
				 border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
   transition: transform 0.3s ease;

}

.członek-karta:hover {
	  transform: translateY(-5px);

}

.członek-info h3   {
    font-size: 1.4rem;
	margin-bottom: 0.5rem;
   color: #2c3e50;
}

.pozycja {
    color: #3498db;
   font-weight  :    600;
   margin-bottom: 1rem;
   font-size: 1rem;
}

.opis {
   color: #666;
    line-height: 1.6;
   font-size: 0.95rem;
}

.wartości-sekcja  
  {
         padding: 5rem 0;
   background-color: white;
}

.wartości-sekcja h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.wartości-kontener {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;


}

.wartość-element {

	    display: flex;
    align-items: flex-start;
 gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
   border-radius: 12px;
   transition: background-color 0.3s ease;

     }



.wartość-element:hover
	{
     background: #e9ecef;
     }

.wartość-ikona {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
  width: 50px;
  height: 50px;
    border-radius: 50%;
	display: flex;
    align-items: center;
  justify-content   : center;
  font-weight     :      bold;
   font-size     :   1.2rem;
 flex-shrink: 0;
}

.wartość-treść h3 {
  margin-bottom: 0.8rem;
    color: #2c3e50;
  font-size: 1.2rem;
}

.wartość-treść p {
  color: #666;
    line-height: 1.6;
   font-size: 0.95rem;
}

.metody-sekcja {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
} 

.metody-treść {
    display: grid;

	    grid-template-columns: 1fr 1fr;

	   gap: 3rem;

		align-items: center;
}

.metody-tekst h2 {
  font-size   :2.2rem;
   margin-bottom: 1.5rem;
}

.metody-tekst > p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.metoda-punkt {
   margin-bottom:1.5rem;
  padding     : 1.5rem;
  background: rgba(255,255,255,0.1);
	border-radius: 10px;
  backdrop-filter: blur(10px);
}

.metoda-punkt h4 {
      margin-bottom : 0.8rem;
  font-size: 1.1rem;
    color: #fff;
}

.metoda-punkt p {
  color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
   line-height: 1.5;
}

.metody-obraz
{
    width: 100%;
    height   :      auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.osiągnięcia-sekcja {

  padding: 5rem 0;
	background-color: white;
}

.osiągnięcia-sekcja h2 {
	 text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.statystyki-siatka {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 2rem;


}

.stat-karta {
  text-align: center;
     padding  : 2rem;
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
       color: white;
     border-radius   :     15px;
     box-shadow: 0 5px 20px rgba(52,152,219,0.3);
      transition: transform 0.3s ease;
}

.stat-karta:hover {
  transform: translateY(-5px);


}

.stat-liczba {
   font-size: 3rem;
       font-weight: bold;
       margin-bottom: 0.5rem;
}

.stat-opis {
    font-size: 1.1rem;
  font-weight: 500;
}

.cta-about {
	padding: 4rem 0;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
					color     :  white;
   text-align: center;
} 

.cta-about h2
{
  font-size: 2.3rem;
    margin-bottom: 1.5rem;
} 

.cta-about p {
  font-size: 1.2rem;
   margin-right: auto;
   max-width: 600px;
  margin-left: auto;
    margin-bottom: 2rem;
}  

.thankyou-główny {
         margin-top: 80px;
   padding: 4rem 0;
  min-height: calc(100vh - 200px); 
	
}

.thankyou-kontener  
  {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 3rem;
    align-items: start;
}

.thankyou-treść {
  text-align  :  center;
}

.sukces-ikona {
   margin: 0 auto 2rem;
    width: 80px;
	height: 80px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
   border-radius:50%;
  display: flex;
    align-items  : center;
   justify-content: center;
  box-shadow: 0 5px 20px rgba(39,174,96,0.3);
}

.check-symbol {
   color: white;

	   font-size: 2.5rem;

	   font-weight: bold;
}

.thankyou-treść h1 {
   font-size: 2.8rem;
  margin-bottom: 1.5rem;
    color  :      #2c3e50;
}

.główny-komunikat {
   color: #666;
    max-width    :     600px;
   margin-bottom: 3rem;
   margin-left: auto;
	font-size: 1.2rem;
   margin-right: auto;
   line-height: 1.7; 

}

.następne-kroki {
	margin-bottom: 3rem;
  text-align: left;
}

.następne-kroki h2 {
  text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
   color  :    #2c3e50;
}

.kroki-lista {
    display  :       flex;
 flex-direction: column;
  gap: 1.5rem;
}

.krok-element {
  display: flex;
   align-items: flex-start;
    gap: 1.5rem;
    padding     : 1.5rem;
  background: #f8f9fa;
   border-radius: 12px;
}

.krok-numer {
  background: linear-gradient(45deg, #3498db, #2980b9); 
	   color: white; 
	    width: 40px; 
	  height: 40px; 
	    border-radius: 50%; 
	   display: flex; 
	  align-items: center; 
	 justify-content: center; 
		font-weight: bold; 
	    flex-shrink: 0;
}

.krok-opis h3 {
    margin-bottom: 0.5rem; 
	      color: #2c3e50; 
	  font-size: 1.1rem;
	
}

.krok-opis p {


    color: #666;
	line-height: 1.6;
  font-size: 0.95rem;
	}

.dodatkowe-info {
  margin-bottom: 3rem;
   text-align: left; 

}

.info-blok {
  background: rgba(52,152,219,0.1);
   padding: 2rem;
	border-radius  :  12px;
  border-left: 4px solid #3498db;
}

.info-blok h3  
  {
   margin-bottom     : 1rem;
    color: #2c3e50;
  font-size: 1.2rem;
}

.info-blok p


{
         margin-bottom: 1rem;
                    color: #666;
 line-height: 1.6;
}

.kontakt-pilny {

    background:        white;
    padding: 1.5rem;
        border-radius: 8px;
  margin-top: 1rem;
}

.kontakt-pilny p {
   	margin-bottom: 0.5rem;
         color   :      #2c3e50;
     }

.akcje-sekcja {
       display: flex; 
    gap: 1rem; 
  justify-content: center; 
   flex-wrap: wrap;
}

.thankyou-wizual  
  {
  position: sticky;

  top   :    100px;

}

.thankyou-obraz {
    width: 100%;
	 height     :       auto;
    border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dodatkowe-usługi {
    padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}



.dodatkowe-usługi h2 {
  margin-bottom: 1rem;
  text-align: center;
   color     :     #2c3e50;
   font-size: 2.2rem;
}

.sekcja-opis {
   text-align: center;
    font-size: 1.1rem;
  margin-bottom   :    3rem;
    color: #666;
   max-width: 600px;
   margin-left:    auto;
    margin-right: auto;
}

.usługi-preview {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.usługa-mini {
   background   :   white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align: center;
	transition: transform 0.3s ease;
}

.usługa-mini:hover {
  transform: translateY(-3px);


}

.usługa-mini h3 {
   margin-bottom: 1rem;
    color: #2c3e50;
   font-size: 1.2rem;
}

.usługa-mini p {
   color: #666;
     line-height: 1.6;
      font-size: 0.95rem;
}@media (max-width: 768px) {
    .historia-treść,
    .metody-treść,
    .thankyou-kontener {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .thankyou-treść h1 {
        font-size: 2.2rem;
    }

    .statystyki-siatka {
        grid-template-columns: repeat(2, 1fr);
    }

    .wartości-kontener {
        grid-template-columns: 1fr;
    }

    .wartość-element {
        flex-direction: column;
        text-align: center;
    }

    .kroki-lista {
        gap: 1rem;
    }

    .krok-element {
        flex-direction: column;
        text-align: center;
    }

    .thankyou-wizual {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .statystyki-siatka {
        grid-template-columns: 1fr;
    }

    .akcje-sekcja {
        flex-direction: column;
        align-items: center;
    }

    .stat-liczba {
        font-size: 2.5rem;
    }

    .about-hero h1,
    .thankyou-treść h1 {
        font-size: 1.8rem;
    }

    .główny-komunikat {
        font-size: 1.1rem;
    }
}.kontakt-info ul {
   list-style: disc;
  padding-left: 20px;
    margin-bottom: 1.5rem;
}

.kontakt-info ul li {
  color: #666;
  line-height: 1.6;
  margin-bottom  :  0.5rem;
}
