.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-1e809fe *//* --- Reset podstawowy --- */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: Arial, sans-serif; 
}

body {
  background-color: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Top Bar --- */
.top-bar {
  background-color: #004b87;
  color: #ffffff;
  padding: 10px 0;
  font-size: 13px;
}

.top-contact, .top-social { 
  display: flex; 
  align-items: center; 
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-social a {
  margin-right: 0;
}

/* --- Nav Bar --- */
.nav-bar {
  background-color: #ffffff;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative; /* Ważne dla pozycjonowania menu mobilnego */
}

.logo img {
  max-height: 70px;
  display: block;
}

.main-menu {
  display: flex;
  align-items: center;
}

.main-menu ul {
  display: flex;
  list-style: none;
}

.main-menu ul li a {
  text-decoration: none;
  color: #004b87;
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s;
  font-size: 15px;
}

.main-menu ul li a:hover {
  color: #38b2ac;
}

/* --- Przycisk akcji (CTA) --- */
.cta-button {
  background-color: #38b2ac;
  color: white;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #2c8c87;
  transform: translateY(-1px);
}

/* --- Menu Mobilne & Responsywność --- */

/* Przycisk Hamburgera */
.mobile-toggle {
  display: none; /* Ukryty na komputerach */
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
}

.mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #004b87;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

/* RWD - Tablety i Telefony */
@media (max-width: 992px) {
  /* Top Bar na mobilu - przywrócony i poprawiony */
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .top-contact {
    flex-direction: column;
    gap: 12px;
  }

  .top-bar a {
    margin-right: 0;
    font-size: 14px; /* Większa czcionka dla łatwiejszego klikania */
  }

  .top-social {
    justify-content: center;
  }

  /* Układ Nav Bara */
  .nav-bar .container {
    padding: 10px 20px;
  }

  .mobile-toggle {
    display: block; /* Pokazujemy hamburgera */
  }

  /* Animacja Hamburgera w X */
  .mobile-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .mobile-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Rozwijane menu mobilne */
  .main-menu {
    display: none; /* Domyślnie ukryte */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .main-menu.active {
    display: flex; /* Pokazane po kliknięciu JS */
  }

  .main-menu ul {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .main-menu ul li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

  .cta-button {
    margin: 20px auto 10px auto;
    display: inline-block;
    width: fit-content;
  }

  .logo img {
    max-height: 50px;
  }
}

/* Bardzo małe ekrany */
@media (max-width: 480px) {
  .top-bar a {
    font-size: 12px;
  }
}/* End custom CSS */