  /* style website */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  header {
    background-color: #161618; /* color dark */
    color: white;
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 250px; /* height header */
    
    font-size: 14px;
  }
  header img {
    max-width: 650px; /* Dostosuj szerokość do logo */
	height: auto;
	max-height:200px;
  }
  .container {
    max-width: 70%;
    margin: 0 auto;
    padding: 2rem;
  }
  h2, h3 {
    color: #08a91b;
  }
  button[type="submit"] {
    background-color: #08a91b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .menu-icon {
    font-size: 60px;
    cursor: pointer;
	display: block;
    
   
  }
 @media (max-width:768px){
	.menu-icon{
		display: block;
	}}
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 150px; /* Wysokość headera */
    right: 0;
    background-color: #333;
    width: 200px;
    text-align: left;
    padding: 10px;
    display: none;
  }
  nav ul.active {
    display: flex;
  }
  nav ul li {
    margin: 10px 0;
  }
  nav ul li a {
    color: white; /* Kolor jasny tekstu */
    text-decoration: none;
  }
  #om-oss{
  background-color: #e7ffea;
  width:100%;
    text-align: center;
    padding: 1rem;
    display: flex;
justify-content: flex-start;
align-items:center;
    height: 100%;
	
  
  }
 #om-oss img{
	width: 400px;
	height: 500px;
	border-radius: 10px;
}

#om-oss .content {
	
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding-left: 10px;
}
#om-oss h2 {
  font-size: 24px;
  color: #08a91b;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.menu-icon i:hover {
  transform: scale(1.1);
}

.card {
  border: 1px solid #ccc;
  border-radius: 10px; /* Zaokrąglone rogi */
  box-shadow: 8px 8px 24po 0px rgba(66,68,90,1);
  padding: 20px;
  background-color: white;
  max-width: 300px;
  margin: 0 auto;
}

.card img {
  width: 60px;
  height: 30px;
  border-radius: 10px;
  object-fit: cover;
}

.card h3 {
  margin-top: 10px;
  color: #333;
}

.card p {
  color: #666;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #08a91b;
  text-decoration: none;
}

  #tjenester{

  background-color: #e7ffea;
  width:100%;
    text-align: center;
    padding: 1rem;
    display: flex;
	flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
    height: 60%;

  }
 #tjenester img{
	width: 200px;
	height: 200px;
}

#tjenester .content {
	
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}
#tjenester h2 {
  font-size: 24px;
  color: #08a91b;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
  
/* Stylowanie całego formularza */
#online-foresporsel {
  margin: 20px auto;
  width: 70%;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
 
}

/* Stylowanie nagłówka formularza */
#online-foresporsel h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.g-recaptcha {
        display: inline-block;
    }
/* Stylowanie etykiet */
label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

/* Stylowanie inputów tekstowych */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 96%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Stylowanie przycisku */
button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* Stylowanie radio buttonów */
input[type="radio"] {
  margin-right: 5px;
}

/* Stylowanie textarea */
textarea {
  resize: vertical;
}

/* Efekt hover na przycisku */
button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Media queries dla responsywności */
@media (max-width: 768px) {
  #online-foresporsel {
    width: 90%;
  }
}

/* Stylowanie sekcji "Kontakt" */
#kontakt {
   background-color: #e7ffea;
  padding: 50px 0;
  text-align: center;
   border: solid;
   border-radius: 20px;
   border-color: crimson;
}

/* Stylowanie nagłówka sekcji */
#kontakt h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Stylowanie opisu sekcji */
#kontakt p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Stylowanie kontaktu */
#kontakt p:first-child {
  font-weight: bold;
}

/* Stylowanie linku email */
#kontakt a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

/* Efekt hover na linku email */
#kontakt a:hover {
  color: #0056b3;
}

/* Stylowanie stopki */
footer {
  background-color: #161618;
  color: #fff;
  padding: 20px ;
}

/* Stylowanie zawartości stopki */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Stylowanie logo w stopce */
.footer-logo img {
  max-width: 150px;
  height: auto;
}

/* Stylowanie tekstu w stopce */
.footer-text p {
  font-size: 14px;
}

/* Efekt hover na linkach w stopce */
.footer-text a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

/* Efekt hover na linkach w stopce */
.footer-text a:hover {
  color: #0056b3;
}
/* Responsywność dla szerokości ekranu mniejszych niż 768px (telefony) */
@media (max-width: 768px) {
  header {
    height: auto;
    max-width: 100%;
  }
  header img {
    max-width: 100%;
    height: 50px;
  }
  header p{
	padding-right:0.5rem;
	  
  }
	  
  nav ul {
    top: auto;
    right: 0;
    width: 100%;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
  }
  nav ul.active {
    display: flex;
    flex-direction: column;
  }
  #om-oss img {
  max-width: 0; /* Dostosuj szerokość obrazu do treści */
  height: auto;
  border-radius: 10px;
  margin-left: 20px; /* Dodaj margines po lewej stronie obrazu */
  object-fit: cover;
}
  #om-oss .content {
    padding-left: 1rem;
	max-width: 100%;
	
	
  }
  #tjenester img {
    max-width: 100%;
    height: auto;
	max-height:150px;
  }
  #om-oss, #tjenester{
    padding: 1rem;
	background-color: #e7ffea;
  width: 100%;
  text-align: start;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto; /* Usuń stałą wysokość, aby dostosować się do zawartości */
  flex-direction: row; /* Ustawanie obrazka i treści w rzędzie */
    border: steelblue;
    border-color: wheat;
    border-radius: 20px;
  }
	nav ul.active {
  display: flex;
  flex-direction: column; /* Wyświetl elementy w kolumnie na urządzeniach mobilnych */
  align-items: flex-start; /* Wyśrodkuj elementy na prawym końcu na urządzeniach mobilnych */
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

  /* Wyświetl menu na ekranach o szerokości do 768px w sposób responsywny */
  nav ul {
    display: none;
  }

  /* Ikona menu na urządzeniach mobilnych */
  .menu-icon {
    font-size: 30px; /* Dostosuj wielkość ikony menu na urządzeniach mobilnych */
    display: block; /* Wyświetl ikonę menu na urządzeniach mobilnych */
    cursor: pointer;
  }
  #om-oss p{
  margin-bottom:10px;
  text-align: inherit;
  }
}


