* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

body a {
    color: #333
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    width: 125px;
    height: auto;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a,
.social-links a,
.big-part a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px
}

.nav-links a:hover,
.social-links a:hover, {
    color: #39b549;
}

.social-links {
    display: flex;
    gap: 0.25rem;
}

.social-links i {
    font-size: 2rem;
    transition: all 0.3s ease
}

.big-part {
    padding: 7.5px 20px;
    background-color: #39b349;
    border-radius: 50px;
    border: 1px solid #39b349;
    transition: all 0.3s ease
}

.big-part i {
    margin-right: 5px;
    font-size: 1.25rem;
    color: white
}

.big-part a {
    color: white;
    align-items: center;
    display: flex
}

.big-part:hover {
    background-color: #2ea03b
}

.social-links i:hover,
.nav-links a:hover {
    color: #39b349;
}

@media (max-width: 1100px) {
  nav {
    flex-wrap: wrap;
    gap: 1rem;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
  }

  .nav-links,
  .social-links,
  .big-part {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
    
    .big-part {
        flex-basis: 50%;
    }

  .big-part {
    justify-content: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .nav-links a,
  .social-links a,
  .big-part a {
    font-size: 0.9rem;
  }

  .social-links i {
    font-size: 1.75rem;
  }

  .big-part {
    padding: 6px 16px;
  }

  .logo img {
    width: 125px;
  }
 
  .big-part {
        flex-basis: 90%;
    }
}

/* cennik */

.pricing-section {
  padding: 3rem 2rem;
  color: #1b1b1b;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-weight: 700;
  font-size: 2.6rem;
  color: #39b549;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.pricing-list {
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  overflow: hidden;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.12rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.12rem;
  font-weight: 500;
  color: #333; /* domyślny kolor tekstu */
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item:hover {  background-color: rgba(57, 181, 73, 0.4) !important; /* delikatne zielone tło dla efektu */
}


.pricing-item h3 {
  margin: 0;
  font-weight: 600;
  color: #333;
  max-width: 70%;
}

.price {
  font-weight: 700;
  color: #39b549;
  font-size: 1.15rem;
  white-space: nowrap;
}

.pricing-item.highlight {

  border-left: 5px solid #39b549;
}

.pricing-item.highlight .price {
  font-size: 1.3rem;
}

.contact-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-contact {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #39b549;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(57, 181, 73, 0.5);
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover {
  background-color: #2e9840;
  box-shadow: 0 8px 22px rgba(46, 152, 64, 0.75);
}

.pricing-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.05rem;
}

.pricing-table th {
  background-color: #39b549;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table td {
  color: #333;
  font-weight: 500;
}

.pricing-table tbody tr:hover {
  background-color: rgba(57, 181, 73, 0.08);
}

@media (max-width: 500px) {
  .pricing-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .btn-contact {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table {
    min-width: 400px; /* wymusza przewijanie, jeśli się nie mieści */
  }
}



@media(max-width:700px) {
   .pricing-section {
  padding: 2rem 1rem;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin: 0 auto 10px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  font-size: 1.05rem;
}


.pricing-item:hover {  background-color: rgba(57, 181, 73, 0.4) !important; /* delikatne zielone tło dla efektu */
}


.pricing-item h3 {
  margin: 0;
  font-weight: 600;
  color: #333;
  max-width: 70%;
}

.price {
  font-weight: 700;
  color: #39b549;
  font-size: 1.15rem;
  white-space: nowrap;
}

.pricing-item.highlight {
  background-color: #e6f4e9;
  border-left: 5px solid #39b549;
}

.pricing-item.highlight .price {
  font-size: 1.25rem;
}

.pricing-item:hover {
  background-color: #f0f9f2;
}

.contact-cta {
  margin-top: 24px;
  text-align: center;
}

.btn-contact {
  display: inline-block;
  padding: 16px 24px;
  font-size: 1.15rem;
  font-weight: 700;
  background-color: #39b549;
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(57, 181, 73, 0.5);
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

}

@media (max-width: 550px) {
  .pricing-item {
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    font-size: 1rem;
    text-align: center;
  }
  
  .pricing-item h3 {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: 1.1rem;
  }
  
  .price {
    font-size: 1.1rem;
    white-space: normal;
  }
    
    .section-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 8px;
}
}



/* Styl dla footera */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px 20px;
    text-align: left;
    margin-top: 50px
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-container div {
    flex: 1;
    min-width: 200px;
}

.footer-container h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-container p, 
.footer-container ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-container a {
    text-decoration: none;
    color: #39b549;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #fff;
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
}

.footer-navigation ul li {
    margin-bottom: 10px;
}

.footer-map iframe {
    width: 90%;
    height: 200px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.footer-map p {
    margin-bottom: 15px
}

.footer-socials {
    display: 
}

.footer-socials i {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #39b349;
    transition: color 0.3s ease;
}

.footer-socials i:hover {
    color: #fff;
}

.socialek {
    margin: 10px 0
}

.socialek a{
    align-items: center;
    margin-left: auto;
    display: flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #aaa;
    width: 60%;
    margin: auto
}

.footer-bottom p{
    color: #fff
}

.footer-bottom a {
    color: #39b349;
    text-decoration: none;
    
}

.orl img {
    width: 100px;
    margin-top: 25px
}