* {
   margin: 0;
   padding: 0;
    box-sizing   :      border-box;
}

body {

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
    color: #2c3e50;
    scroll-behavior: smooth;
     }

.główna-nawigacja

{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
    top: 0;
  width: 100%;
    z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.kontener-nav {
	 max-width :   1200px;
   margin: 0 auto;
  display    : flex;
      justify-content: space-between;
  align-items: center;
    padding: 0 20px;
  height    : 70px;
}

.logo-sekcja {
	flex-shrink: 0; 
	
}

.logo-obraz {
  height   :       40px;
   width: auto;
}

.menu-lista
	{
    display: flex;
	list-style: none;
   gap: 2rem;
}



.link-nav {
  position: relative;
    font-weight: 500;
   transition: color 0.3s ease;
    text-decoration: none;
   color: #34495e;
}

.link-nav:hover,
.link-nav.aktywny
{
          color: #3498db;

}

.link-nav.aktywny::after  {
  content: '';
    position: absolute;
  bottom: -5px;
    left: 0;
   width: 100%;
    height: 2px;
    background: #3498db;
}  

.burger-menu    {


                    display: none;
    flex-direction: column;
  cursor: pointer;
               gap: 4px;
     }

.linia-burger {
  width: 25px;
    height  :3px;
	background   :    #34495e;
    transition: 0.3s;
}

.burger-menu.aktywny .linia-burger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.aktywny .linia-burger:nth-child(2) {
  opacity: 0;
}

.burger-menu.aktywny .linia-burger:nth-child(3) {
	  transform: rotate(-45deg) translate(6px, -6px);
     }

.sekcja-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height :100vh;
    display: flex;
   align-items: center;
  padding-top  : 70px;
       color    :      white;
}

.kontener-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  display: grid;
  grid-template-columns :       1fr 1fr;
    gap     :  4rem;
  align-items    :        center;
}

.tytuł-główny {
    font-size: 3.5rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.opis-hero {
	font-size: 1.2rem;
    margin-bottom     :        2.5rem;
  opacity: 0.9;
   line-height: 1.8;
	
}

.przyciski-hero {
    display: flex;
   gap: 1rem;
   flex-wrap   :      wrap;
}

.przycisk-główny,
.przycisk-drugorzędny {
     padding: 1rem 2rem;
  text-decoration: none;
    border-radius  : 8px;
   font-weight    :  600;
  transition: all 0.3s ease;
    display: inline-block;
}

.przycisk-główny {
  background: #e74c3c;
          color: white;
          border: 2px solid #e74c3c;
}



.przycisk-główny:hover {
   background: #c0392b;
                    border-color: #c0392b;
  transform: translateY(-2px);
}

.przycisk-drugorzędny {
    background: transparent;
  color: white;
   border: 2px solid white;
}

.przycisk-drugorzędny:hover {
         background: white;
    color  :    #667eea;
}

.hero-img {
        width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	}

.sekcja-usługi {
   padding: 100px 0;
    background: #f8f9fa;
}

.kontener-usługi {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.nagłówek-sekcji {
   font-size: 2.5rem;
    text-align: center;
   margin-bottom: 3rem;
	color: #2c3e50;
}

.siatka-usług {
    display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.karta-usługi {
   background: white;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karta-usługi:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.obraz-usługi {
  width     :      100%;
	height :    200px;
   object-fit: cover;
}

.tytuł-usługi {
  font-size: 1.5rem;
   margin: 1.5rem 1.5rem 1rem;
  color: #2c3e50;
}

.opis-usługi {
  padding: 0 1.5rem 1.5rem;
       color: #7f8c8d;
  line-height: 1.6;
}

.sekcja-o-nas {
   padding: 100px 0;
  background: white;
}

.kontener-o-nas {
   max-width: 1200px;
    margin: 0 auto;
 padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
          gap: 4rem;
  align-items    :   center;
}

.nagłówek-o-nas {
   font-size    :   2.5rem;
  margin-bottom: 1.5rem;
	 color: #2c3e50;
}

.tekst-o-nas {
   	font-size: 1.1rem;
	   color: #7f8c8d;
	    margin-bottom: 2rem;
	    line-height: 1.8;
     }

.lista-korzyści {
   gap: 1.5rem;
    display: flex;
       flex-direction    :     column;
}

.element-korzyści {
	padding: 1.5rem;
    background: #ecf0f1;
   border-radius: 10px;
          border-left:  4px solid #3498db;
}

.tytuł-korzyści {
  font-size: 1.2rem;

  color: #2c3e50;

   margin-bottom     :        0.5rem;
}

.opis-korzyści {
    color: #7f8c8d;
	 line-height: 1.6;
}

.img-o-nas {
    width: 100%;
   height: auto;
   border-radius: 15px;
}

.sekcja-cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	 padding: 80px 0;
   color: white;
   text-align:      center;
}

.kontener-cta {
   max-width: 800px;
    margin: 0 auto;
	padding: 0 20px;
}

.nagłówek-cta {
   font-size: 2.5rem;
	 margin-bottom: 1.5rem;
	
}

.tekst-cta {
  font-size: 1.2rem;
	 margin-bottom: 2.5rem;
   opacity: 0.9;
  line-height: 1.8;
}

.przycisk-cta {
         background: #e74c3c;
	 color: white;
   padding: 1.2rem 2.5rem;
    text-decoration: none;
  border-radius: 8px;
    font-size: 1.1rem;
	font-weight: 600;
   transition  :    all 0.3s ease;
   display: inline-block;
}

.przycisk-cta:hover {
	 background: #c0392b;
  transform: translateY(-2px);
}

.sekcja-kontakt {
    padding :   100px 0;
  background: #f8f9fa;
}

.kontener-kontakt {
    max-width: 1200px;
  margin     : 0 auto;
   padding: 0 20px;
}

.nagłówek-kontakt {
    font-size :       2.5rem;
  text-align :   center;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.wrapper-kontakt {
  display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.info-kontakt {
    background: white;
	      padding: 2rem;
	    border-radius: 15px;
	   height: fit-content;
}

.tytuł-info {


  font-size: 1.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;

}

.element-kontakt {
	margin-bottom: 1.5rem;
}

.element-kontakt strong {
  color: #2c3e50;
    display   :      block;
    margin-bottom: 0.5rem;
}

.element-kontakt p {
    color: #7f8c8d;
    line-height: 1.6;
}

.formularz-kontakt {
  background: white;
          padding  :    2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.grupa-pól {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap     :      1rem;
	 margin-bottom: 1rem;
}

.pole-input,
.pole-select,
.pole-textarea  {
    width   :       100%;
    padding: 1rem;
  border   :   2px solid #ecf0f1;
  border-radius: 8px;
   font-size: 1rem;
    transition: border-color 0.3s ease;
   margin-bottom: 1rem;
}  

.pole-input:focus,
.pole-select:focus,
.pole-textarea:focus {
  outline: none;
    border-color: #3498db;
}

.pole-textarea	{
  resize     :    vertical;
  min-height: 120px;
}

.przycisk-wyślij

{


  background: #3498db;
	color: white;
	padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
	 font-size: 1.1rem;
    font-weight: 600;
   cursor  :       pointer;
	 transition: all 0.3s ease;
	width: 100%;
}

.przycisk-wyślij:hover 
 {
    background: #2980b9;
  transform: translateY(-2px);
}

.stopka-główna


{
	background    :     #2c3e50;
   color: white;
  padding: 60px 0 20px;
}

.kontener-stopka {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.logo-stopka {
    height: 50px;
               width: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
} 

.opis-stopka {
    color: #bdc3c7;

	  line-height: 1.6; 
	
}

.nagłówek-stopka {
 font-size: 1.2rem;
	margin-bottom: 1rem;
    color: white;
}

.lista-stopka {
    list-style     : none; 

}  

.lista-stopka li {
  margin-bottom: 0.5rem;
}

.link-stopka {


    color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
	

}

.link-stopka:hover {
   color :  white; 

}

.info-stopka {
    color :    #bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.dolna-stopka {

   text-align: center;
	padding-top: 1rem;
    border-top: 1px solid #34495e;
     margin-top: 2rem;
     }

.copyright   {
    color: #95a5a6;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-lista {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .menu-lista.aktywne {
        left: 0;
    }
    
    .kontener-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tytuł-główny {
        font-size: 2.5rem;
    }
    
    .przyciski-hero {
        justify-content: center;
    }
    
    .kontener-o-nas {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .wrapper-kontakt {
        grid-template-columns: 1fr;
    }
    
    .grupa-pól {
        grid-template-columns: 1fr;
    }
    
    .nagłówek-sekcji,
    .nagłówek-kontakt,
    .nagłówek-cta {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .kontener-nav,
    .kontener-usługi,
    .kontener-o-nas,
    .kontener-kontakt,
    .kontener-stopka {
        padding: 0 15px;
    }
    
    .tytuł-główny {
        font-size: 2rem;
    }
    
    .opis-hero {
        font-size: 1rem;
    }
    
    .siatka-usług {
        grid-template-columns: 1fr;
    }
}.hero-o-nas {
  background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
  min-height: 60vh;
   display: flex;
   align-items: center;
    padding-top: 70px;
    color: white;
	}

.kontener-hero-about {
    max-width: 1200px; 
  margin: 0 auto; 
  padding  : 0 20px; 
   text-align   :center;
}

.główny-tytuł-about {
   font-size: 3rem;
   font-weight: 700;
  margin-bottom:1.5rem;
    line-height: 1.2;
}

.podtytuł-about {
   font-size: 1.3rem;
  max-width: 800px;
  margin    :0 auto;
  opacity: 0.9;
   line-height: 1.8;


}

.sekcja-misja {
          padding: 100px 0;
   background: white;
     }

.kontener-misja {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;


}

.siatka-misja {

  display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
     }

.nagłówek-misja
	{

	               font-size: 2.5rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;


}

.opis-misja {
               font-size: 1.1rem;
  line-height: 1.8;
        color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.img-misja {
   width: 100%;
	height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.sekcja-wartości


{
    padding: 100px 0;
   background: #f8f9fa;
}

.kontener-wartości {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.nagłówek-wartości {
  font-size :  2.5rem;

   text-align: center;

   margin-bottom: 3rem;

  color: #2c3e50;
}


.siatka-wartości {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.karta-wartość {
	          background: white;
        padding: 2.5rem 2rem;
   border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
 transition: transform 0.3s ease;
     }

.karta-wartość:hover {
  transform: translateY(-10px);
}

.ikona-wartość {
    width  :      80px;
   height: 80px;
    margin: 0 auto 1.5rem;
        position: relative;


}

.symbol-adaptacja {
	 width     : 100%;
   height: 100%;
  background: linear-gradient(45deg, #3498db, #2980b9);
   border-radius: 50%;
  position    :      relative;
}

.symbol-adaptacja::after {
  content: '';
    position: absolute;
               top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
               border    :3px solid white;
   border-radius: 50%;
}

.symbol-innowacja {
	width: 100%;
     height: 100%;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  border-radius: 15px;
  position: relative;
}

.symbol-innowacja::after {
  content: '';
	position: absolute;
   top: 50%;
   left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
    width: 30px;
  height: 30px;
  border: 3px solid white;
}

.symbol-rozwój {
    width: 100%;
   height: 100%;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);}

.tytuł-wartość     {

    font-size:    1.4rem;
    margin-bottom  :   1rem;
   color   :        #2c3e50;}

.opis-wartość {
  color: #7f8c8d;
  line-height: 1.6;
}

.sekcja-historia {
  padding: 100px 0;
                    background :     white;
}

.kontener-historia {
    max-width: 900px;
  margin: 0 auto;
         padding: 0 20px;
}

.nagłówek-historia {
   font-size: 2.5rem;
    text-align: center;
   margin-bottom    :        3rem;
    color: #2c3e50;
}

.timeline-historia {
   position: relative;
   padding-left: 2rem;
	}

.timeline-historia::before {
  top  : 0;
                    bottom: 0;
  width: 2px;
   left: 30px;
    background: #3498db;
  content: '';
   position: absolute;
}

.element-timeline {
   position: relative;
	margin-bottom: 3rem;
  padding-left: 4rem;
}

.element-timeline::before {
  content: '';
   position     :     absolute;
   left: -39px;
  top: 8px;
	width: 16px;
    height: 16px;
   background: #3498db;
  border-radius: 50%;
  border: 4px solid white;
   box-shadow  : 0 0 0 4px #3498db;
} 

.rok-timeline {
    position: absolute;
    left: -120px;
  top    :   0;
    background: #2c3e50;
  color: white;
	padding: 0.5rem 1rem;
  border-radius   :      20px;
    font-weight    : 600;
    font-size: 0.9rem;
} 

.tytuł-timeline {
  font-size: 1.3rem;
     margin-bottom: 0.5rem;
      color: #2c3e50;
}

.opis-timeline {

   color: #7f8c8d;
	  line-height: 1.6;


}

.sekcja-ekspertyza {
   padding: 100px 0;
   background :     #f8f9fa;
}

.kontener-ekspertyza {
    max-width: 1200px;
	margin: 0 auto;
   padding :     0 20px;
}

.siatka-ekspertyza {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
      align-items: center;
}


.img-ekspertyza {
   width     : 100%;
    height: auto;
  border-radius   :     15px;
}

.nagłówek-ekspertyza {
   font-size: 2.5rem; 
	 margin-bottom: 2rem; 
	color: #2c3e50;
	
}

.lista-ekspertyza {

	  gap: 2rem;
    flex-direction: column;
   display: flex;}

.element-ekspertyza {
    padding: 1.5rem;
   background: white;
               border-radius: 10px;
  border-left: 4px solid #e74c3c;
}

.tytuł-ekspertyza {


    font-size: 1.2rem;
    margin-bottom: 0.5rem;
	color: #2c3e50;


	}

.opis-ekspertyza {

	  color: #7f8c8d;
    line-height: 1.6;
	}

.sekcja-liczby		{
    padding: 100px 0;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;
}

.kontener-liczby {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nagłówek-liczby {
        margin-bottom: 3rem;
   text-align: center;
   font-size: 2.5rem;
}

.siatka-statystyk {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
    text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
	border-radius: 15px;
  backdrop-filter: blur(10px);
}

.liczba-stat {
  font-size: 3rem;
   font-weight: 700;
          margin-bottom  :  0.5rem;
   color: white; 

}

.opis-stat {

	  font-size   :   1.1rem;
    opacity: 0.9;}

.sekcja-cta-about {
  color: white;
    text-align:       center;
   padding: 80px 0;
    background     :       #2c3e50;
}

.kontener-cta-about {

	   max-width: 800px;
	 margin     :0 auto;
   padding: 0 20px;

}

.nagłówek-cta-about


{
   font-size     :       2.5rem;
	 margin-bottom: 1.5rem;
}

.tekst-cta-about	{
    font-size: 1.2rem;
   margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height  :1.8;
}

.przycisk-cta-about {
  background   :#e74c3c;
  color: white;
  padding: 1.2rem 2.5rem;
   text-decoration: none;
   border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
       transition: all 0.3s ease;
    display: inline-block;
}

.przycisk-cta-about:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.sekcja-thankyou {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
    display: flex;
  align-items: center;
   color: white;
}

.kontener-thankyou {
    max-width: 1200px;

	  margin: 0 auto;

	   padding: 0 20px;

	  display: grid;

	   grid-template-columns: 2fr 1fr;

	   gap: 4rem;

	    align-items: center;
}  

.treść-thankyou {
  text-align: center;
}

.ikona-sukces {

	  margin :       0 auto 2rem;
    width   :       100px;
   height: 100px;
}

.checkmark {
  width: 100px;
  height: 100px;
    border-radius: 50%;
     display: block;
    stroke-width: 3;
  stroke: #27ae60;
    stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #27ae60;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  position: relative;
}

.checkmark-circle{
   stroke-dasharray: 166;
    stroke-dashoffset: 166;
   stroke-width : 3;
   stroke-miterlimit: 10;
   stroke: #27ae60;
  fill    :        none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   width: 100px;
    height: 100px;
       border-radius: 50%;
   background: white;
          position: absolute;
    top: 0;
  left: 0;
}

.checkmark-stem {
   position: absolute;
  width: 3px;
   height: 20px;
  background    :       #27ae60;
    left: 43px;
               top: 50px;
  transform: rotate(45deg);
  animation: checkmark-stem 0.3s ease-in-out 0.9s forwards;
    transform-origin   :       bottom;
  opacity: 0;
}


.checkmark-kick {
               position: absolute;
    width: 3px;
    height: 12px;
	background: #27ae60;
   left: 35px;
  top: 58px;
  transform: rotate(-45deg);
    animation: checkmark-kick 0.3s ease-in-out 1.1s forwards;
   transform-origin: bottom;
   opacity: 0;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px #27ae60;
    }
}

@keyframes checkmark-stem {
    100% {
        opacity: 1;
    }
}

@keyframes checkmark-kick {
    100% {
        opacity: 1;
    }
}.tytuł-thankyou {
   font-size: 3rem;
	 font-weight: 700;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.tekst-główny-thankyou {


   font-size    :   1.2rem;
	 margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.8;
        max-width    :  600px;
  margin-left: auto;
    margin-right: auto;
     }

.informacje-następne {

	  background: rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  border-radius: 15px;
   margin-bottom: 3rem;
  backdrop-filter: blur(10px);
	
	}

.nagłówek-następne {
   text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.lista-kroków {
      display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.krok-element {
  display: flex;
   align-items  :      flex-start;
  gap: 1rem;
  text-align: left;
}

.numer-krok     {
  background: #e74c3c;
	color: white;
   width: 40px;
  height: 40px;
  border-radius   :     50%;
  display: flex;
  align-items: center;
	 justify-content:       center;
  font-weight: 600;
    flex-shrink: 0;
}

.tytuł-krok {
       font-size: 1.2rem;
	 margin-bottom: 0.5rem;
  color: white;




}

.opis-krok {
   line-height: 1.6;
  opacity: 0.9;
     }

.sekcja-materiały {
  background: rgba(255,255,255,0.1);
		padding: 2rem;
	  border-radius: 15px;
	    margin-bottom: 3rem;
	  backdrop-filter: blur(10px); 
	
}

.nagłówek-materiały {
    font-size: 1.5rem;
   margin-bottom: 1rem;
    text-align: center;
}

.tekst-materiały {
       margin-bottom: 2rem;
	opacity: 0.9;
   text-align: center;
	}

.przyciski-materiały {
   display   :     flex;
	gap: 1rem;
    justify-content:   center;
  flex-wrap: wrap;
}

.przycisk-materiał,
.przycisk-materiał-secondary {
  transition: all 0.3s ease;
	    border-radius: 8px;
	    padding: 1rem 2rem;
	         display: inline-block;
	  font-weight: 600;
	    text-decoration: none;
}

.przycisk-materiał {
  background     :     #e74c3c;
    color: white;
	border: 2px solid #e74c3c;
}

.przycisk-materiał:hover{
  border-color: #c0392b;
  transform: translateY(-2px);
    background: #c0392b;
}

.przycisk-materiał-secondary

{
    background: transparent;
   color: white;
  border: 2px solid white;
}

.przycisk-materiał-secondary:hover {
	 background    :     white;
    color: #667eea;
}


.kontakt-awaryjny {
  background: rgba(231, 76, 60, 0.2);
  padding: 2rem;
    border-radius: 15px;
    text-align: center;
  border: 2px solid rgba(231, 76, 60, 0.3);
}

.nagłówek-awaryjny {
    font-size: 1.3rem;
   margin-bottom    :  1rem;
               color: white; 

}

.tekst-awaryjny {
    margin-bottom: 1.5rem;
        opacity: 0.9;
}

.telefon-awaryjny {
    font-size: 1.4rem;
  font-weight: 700;
    color: #ffffff;
  text-decoration: none;
  background: rgba(231, 76, 60, 0.8);
  padding: 1rem 2rem;
    border-radius    :       8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.telefon-awaryjny:hover {


               background: #e74c3c;
  transform: scale(1.05);


}

.img-thankyou {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .główny-tytuł-about {
        font-size: 2.5rem;
    }
    
    .siatka-misja,
    .siatka-ekspertyza {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-historia::before {
        left: 20px;
    }
    
    .element-timeline {
        padding-left: 3rem;
    }
    
    .element-timeline::before {
        left: -29px;
    }
    
    .rok-timeline {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .kontener-thankyou {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tytuł-thankyou {
        font-size: 2.5rem;
    }
    
    .lista-kroków {
        align-items: center;
    }
    
    .krok-element {
        text-align: center;
        flex-direction: column;
    }
    
    .przyciski-materiały {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .główny-tytuł-about {
        font-size: 2rem;
    }
    
    .nagłówek-misja,
    .nagłówek-wartości,
    .nagłówek-historia,
    .nagłówek-ekspertyza,
    .nagłówek-liczby,
    .nagłówek-cta-about {
        font-size: 2rem;
    }
    
    .siatka-wartości,
    .siatka-statystyk {
        grid-template-columns: 1fr;
    }
    
    .tytuł-thankyou {
        font-size: 2rem;
    }
    
    .informacje-następne {
        padding: 2rem 1rem;
    }
}.policySection {
		background: #f8f9fa;
   padding :      80px 2rem;
}

.policyContainer     {
  max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
      color: #2c3e50;
       margin-bottom: 1.5rem;
      font-weight: 700;
}

.policyContainer p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
  line-height: 1.7;
        font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}