section {
    padding: 30px 10px;
    min-height: auto;
  }
  
  section h1,
  section h2 {
    margin-bottom: 30px;
  }
  
  #kontakt h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
  }
  
  section h2 {
    font-size: 2.2em;
  }
  
  section p {
    font-size: 1.1em;
  }
  
  #kontakt,
  #onas,
  #park {
    background-color: #f9f9f9;
  }
  
  #galeria-dekoracyjna .gallery-item img,
  #onas .section-img,
  #park .section-img,
  #realizacje .section-img {
    outline: 3px solid var(--main-gold);
    outline-offset: -14px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 164px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
    margin: 20px auto 50px;
  }
  
  .icon-container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .icon-svg {
    width: 70px;
    height: 70px;
    stroke: #2d4e2d;
    fill: transparent;
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  
  .icon-container:hover .tulejka-icon {
    stroke: var(--tulejka-hover);
  }
  
  .icon-container p {
    margin-top: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #000;
  }
  
  .icon-container p.centered {
    text-align: center;
  }
  
  #galeria {
    padding: 0;
    margin: 0;
  }
  
  .gallery {
    width: 100%;
    aspect-ratio: 16 / 6;
    position: relative;
    overflow: hidden;
  }
  
  .gallery img {
    width: 100%;
    height: 9%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .gallery img.active {
    opacity: 1;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 45%;
    right: -1%;
    transform: translateY(-50%);
    width: 50%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 30px 40px;
    border-radius: 5px;
    z-index: 5;
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
  }
  
  .gallery button.left-arrow,
  .gallery button.right-arrow {
    position: absolute;
    top: 40%;
    width: 60px;
    height: 60px;
    background-color: #2d4e2d;
    border: none;
    border-radius: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 11;
  }
  
  .gallery button.left-arrow {
    left: calc((100% - 90%) / 2 + 10px);
  }
  
  .gallery button.right-arrow {
    right: calc((100% - 90%) / 2 + 10px);
  }
  
  .gallery button:hover {
    transform: scale(1.487);
    z-index: 9;
  }
  
  .gallery button.left-arrow:hover i,
  .gallery button.right-arrow:hover i {
    color: #eec469;
  }
  
  .gallery button.left-arrow i,
  .gallery button.right-arrow i {
    font-size: 24px;
    color: #fff;
  }
  
  .contact-modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  .contact-modal-content {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
    background-color: #fff;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s forwards;
    text-align: left;
    margin-bottom: 20%;
  }
  
  @keyframes slideUp {
    from {
      transform: translateX(-50%) translateY(100%);
    }
    to {
      transform: translateX(-50%) translateY(0);
    }
  }
  
  .contact-modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
  }
  
  #contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: inherit;
  }
  
  #contact-form textarea {
    min-height: 120px;
    font-size: 1.1em;
  }
  
  #contact-form button {
    padding: 10px;
    background-color: #2d4e2d;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  #contact-form button:hover {
    background-color: var(--oferta-color);
  }
  
  #checkbox {
    display: none;
  }
  
  .section-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 3px var(--main-gold);
  }
  
  #oferta p {
    margin-bottom: 20px;
  }
  
  #oferta {
    align-items: center;
    width: 50%;
    text-align: center;
    margin: 0 auto;
  }
  
  .icon-container:hover .icon-svg {
    stroke: var(--main-gold);
  }
  
  .decorative-gallery {
    display: flex;
    justify-content: center;
    gap: 140px;
    max-width: 65%;
    margin: 20px auto 0 auto;
  }
  
  .decorative-gallery .gallery-item {
    position: relative;
    flex: 1;
    overflow: hidden;
  }
  
  .decorative-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: inset 0 0 0 3px var(--main-gold);
  }
  
  .decorative-gallery .gallery-item .overlay {
    position: absolute;
    top: 40%;
    left: 14%;
    width: 70%;
    height: 12%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(18px, 2vw, 24px);
    border: 2px solid var(--main-gold);
    opacity: 1;
    transition: opacity 0.3s, background 0.3s ease;
  }
  
  .decorative-gallery .gallery-item:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
  }
  
  .contact-details {
    margin: 20px 0;
    font-size: 16px;
  }
  
  .map {
    margin-top: 20px;
  }
  
  #galeria {
    margin: 0;
    padding: 0;
  }
  
  .gallery {
    width: 100%;
  }
  
  .gallery button.left-arrow,
  .gallery button.right-arrow {
    width: 40px;
    height: 40px;
  }
  
  .gallery button.left-arrow i,
  .gallery button.right-arrow i {
    font-size: 16px;
  }
  
  .mobile-menu nav ul li a.oferta-link,
  .navbar a.oferta-link {
    color: var(--oferta-color) !important;
    font-weight: 700;
  }
  
  #kontakt .map {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    margin: 20px auto;
  }
  
  #kontakt .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5%;
    width: 80%;
    height: 50%;
  }
  
  #kontakt .contact-details::after {
    content: "Godziny otwarcia: Pon-Pt 6:00-15:00";
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
  }
  
  section {
    padding: 30px 10px;
    min-height: auto;
  }
  
  .gallery-overlay {
    margin: 0;
  }
  
  #onas,
  #park,
  #realizacje {
    text-align: justify;
  }
  
  #onas p,
  #park p,
  #realizacje p {
    font-size: 1.2em;
  }
  
  #galeria .gallery img {
    height: auto;
    object-fit: contain;
  }
  
  #oferta {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  #galeria {
    margin-top: 0;
    padding-top: 0;
  }
  
  .gallery-overlay {
    font-size: clamp(1rem, 2vw, 1.4rem);
  }
  
  .contact-section {
    background-color: #0d4e18;
    padding: 50px 0;
    height: 500px;
    margin-bottom: 160px;
  }
  
  .contact-container {
    width: 50%;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-left: 50px;
    margin-top: 40px;
  }
  
  .contact-info1 {
    width: 46%;
    padding-right: 58px;
    color: #fff;
  }
  
  .contact-info1 h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #000;
  }
  
  .contact-info1 p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .contact-info1 a,
  .contact-info1 ul {
    color: #000;
    text-decoration: none;
  }
  
  .contact-info1 a:hover {
    text-decoration: underline;
  }
  
  .contact-form {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 14px;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
  }
  
  .contact-form button {
    padding: 15px 30px;
    background-color: #2d4e2d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .contact-form button:hover {
    color: #cc9f39;
    background-color: transparent;
    border: 1px solid var(--main-gold);
  }
  
  .phone-link {
    color: #cc9f39;
    text-decoration: underline 2px solid #cc9f39;
    text-underline-offset: 2px;
  }
  
  .phone-link a {
    color: #cc9f39;
  }
  
  .info-background i {
    color: #cc9f39;
  }
  
  .opis-kontakt {
    color: #000;
  }
  
  .info-background {
    margin-top: 30px;
  }
  
  .separator {
    border: none;
    width: 100%;
    height: 3px;
    background-color: #cc9f39;
    margin: 40px 0;
  }
  
  .adres1 {
    color: #000;
  }
  
  .info-background i {
    margin-top: 3px;
  }
  
  .phone-link1 a {
    color: #cc9f39;
  }
  
  .separator2 {
    border: none;
    width: 100%;
    height: 3px;
    background-color: #cc9f39;
  }
  
  #dwaM i {
    margin-right: 10px;
  }
  
  .info-background i {
    margin-right: 5px;
  }
  
  #h1-galeria {
    margin-top: 60px;
  }
  
  @media (max-width: 1250px) {
    #oferta {
      width: 100%;
      margin: 0 auto;
    }
  
    .decorative-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 90%;
    }
  
    .decorative-gallery .gallery-item {
      flex: 1 1 calc(50% - 40px);
    }
  
    .contact-container {
      display: flex;
      flex-direction: column;
      width: 90%;
      padding: 20px;
    }
  
    .contact-form,
    .contact-info1 {
      width: 100%;
      padding: 0;
    }
  
    #h1-galeria {
      margin-top: 330px;
    }
  }
  
  @media (max-width: 1114px) {
    #h1-galeria {
      margin-top: 370px;
    }
  }
  
  @media (max-width: 768px) {
    .icons-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      gap: 20px;
    }
  
    #oferta h1 {
      font-size: 2.4em;
      margin: 30px 0;
    }
  
    .gallery button.left-arrow,
    .gallery button.right-arrow {
      width: 36px;
      height: 36px;
    }
  
    .gallery button.left-arrow {
      left: 10px;
      top: 45%;
    }
  
    .gallery button.right-arrow {
      right: 10px;
      top: 45%;
    }
  
    .gallery-overlay {
      font-size: clamp(0.9rem, 2.5vw, 1.2rem);
      padding: 20px;
    }
  
    .decorative-gallery {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .decorative-gallery .gallery-item {
      width: 100%;
    }
  }
  
  @media (max-width: 617px) {
    #h1-galeria {
      margin-top: 410px;
    }
  }
  
  @media (max-width: 480px) {
    section {
      padding: 20px 5px;
    }
  
    .icon-container {
      width: 150px;
      height: 136px;
    }
  
    #h1-galeria {
      margin-top: 410px;
    }
  }
  
  @media (max-width: 430px) {
    #h1-galeria {
      margin-top: 435px;
    }
  }
  
  @media (max-width: 429px) {
    #h1-galeria {
      margin-top: 455px;
    }
  }
  
  @media (max-width: 426px) {
    #h1-galeria {
      margin-top: 470px;
    }
  }
  
  @media (max-width: 365px) {
    #h1-galeria {
      margin-top: 485px;
    }
  }
  
  @media (max-width: 364px) {
    #h1-galeria {
      margin-top: 500px;
    }
  }
  
  #hero {
    height: 700px;
    width: 100%;
    background-image: url(../images/zdjecia/galeria.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  
  #hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.92rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: clamp(1rem, 8vw, 2rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  }
  
  @media (max-width: 768px) {
    #hero {
      height: 42vh;
      width: 100%;
    }
  }