body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
  }
  
  .accent-color {
    color: #8fd8cd;
  }
  
  .hero-header {
    background-color: #8fd8cd;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* CENTRUJE napis */
    gap: 2rem;
  }

  .hero-center {
    flex: 1 1 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-right {
    flex: 1 1 30%;
    display: flex;
    justify-content: center; /* równa w poziomie */
    align-items: center;
  }

  .hero-main-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
  }

  .hero-logo-img {
    max-width: 300px; /* POWIĘKSZENIE logotypu */
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* RESPONSYWNOŚĆ */
  @media (max-width: 768px) {
    .hero-header {
      flex-direction: column;
      text-align: center;
    }

    .hero-right {
      margin-top: 1rem;
    }

    .hero-main-img {
      max-width: 90vw;
    }

    .hero-logo-img {
      max-width: 180px;
    }
  }
  
  h1, h2 {
    font-weight: bold;
  }
  
  section {
    padding: 2rem 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  footer {
    font-size: 0.9rem;
    background-color: #8fd8cd !important;
    color: #000;
  }
  
  .service-box {
    background-color: #e0f7f3;
    border: 2px solid #8fd8cd;
    border-radius: 30px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background-color 0.4s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #0d3d3d;
    padding: 1.5rem 1rem;
    cursor: pointer;
  }

  .service-box.active {
    background-color: #c7f0ea;
  }

  .service-content {
    width: 100%;
    text-align: center;
  }

  .service-title {
    font-weight: 600;
    margin: 0;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
  }

  .service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    text-align: left;
    width: 100%;
    margin-top: 0;
    transition:
      max-height 0.5s ease,
      opacity 0.4s ease,
      transform 0.4s ease,
      margin-top 0.3s ease 0.3s; /* opóźnienie tylko przy zwijaniu */
  }

  .service-box.active .service-details {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 1rem;
    transition:
      max-height 0.5s ease,
      opacity 0.4s ease,
      transform 0.4s ease,
      margin-top 0.3s ease; /* bez opóźnienia przy rozwijaniu */
  }

  .service-details ul {
    padding-left: 1.2rem;
    margin: 0;
    list-style-type: disc;
  }

  .service-details li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #0d3d3d;
  }
  
  .placeholder {
    font-style: italic;
    color: #555;
  }
  
  .col-md-6 {
    font-size: large;
  }
  
  .btn-light {
    background-color: #8fd8cd;
    border: none;
    color: #fff;
    font-weight: 600;
  }
  
  .btn-light:hover {
    background-color: #7ccabc;
    color: #fff;
  }
  
  .text-center a {
    color: #8fd8cd;
  }
  
  .text-center a:hover {
    color: #0d3d3d;
  }

  @media (max-width: 768px) {
    .service-box {
      max-width: 100%;
      width: 100%;
    }
  }

  @media (hover: hover) and (pointer: fine) {
    .service-box {
      cursor: default;
    }
}