    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Ubuntu', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }

    header {
      height: 100vh;
      background: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?q=80&w=1600&auto=format&fit=crop') center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
    }

    header::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
    }

    .hero {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .hero h1 {
      color: lightgray;
      font-family: 'Ubuntu', sans-serif;
      font-size: 56px;
      margin-bottom: 20px;
    }

    .hero p {
      color: lightgray;
      font-family: 'Ubuntu', sans-serif;
      font-size: 22px;
      max-width: 700px;
    }

    .hero {
      font-family: 'Ubuntu', sans-serif;
      text-shadow: 5px 5px 8px #000000b0;
    }

    section {
      padding: 78px 18px;
      max-width: 1100px;
      margin: auto;
    }

    h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 36px;
    }

    .about {
      text-align: center;
      font-size: 18px;
      max-width: 800px;
      margin: auto;
    }

    .hero p,
    .page-intro p {
      font-size: 18px;
    }

    .page-intro {
      padding-top: 128px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 16px;
      transition: 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.03);
    }

    .contact {
      text-align: center;
      font-size: 20px;
    }

    .contact p {
      margin: 12px 0;
    }

    footer {
      background: #111;
      color: white;
      text-align: center;
      padding: 25px;
      margin-top: 50px;
    }

    /* MENU */

    .top-nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;

      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);

      border-bottom: 1px solid rgba(255, 255, 255, 0.15);

      transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        color 0.35s ease;
    }

    .top-nav a:hover {
      transform: scale(1.22);
      opacity: 0.9;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 18px 40px;

      display: flex;
      justify-content: center;
      gap: 50px;
    }

    .top-nav a {
      color: #e5d7d1;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 500;
      letter-spacing: 1px;

      transition: 0.3s ease;
    }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 40px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border: 0;
      border-radius: 8px;
      color: #f5f1ee;
      background: rgba(60, 45, 40, 0.34);
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.25s ease, transform 0.25s ease;
    }

    .menu-toggle:hover {
      background: rgba(60, 45, 40, 0.46);
      transform: translateY(-2px);
    }

    .menu-toggle span {
      width: 22px;
      height: 2px;
      display: block;
      background: currentColor;
      border-radius: 999px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .top-nav.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .top-nav.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .top-nav.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .lang-switcher {
      position: relative;
      display: flex;
      align-items: center;
    }

    .lang-current,
    .lang-option {
      border: 0;
      font: inherit;
      cursor: pointer;
    }

    .lang-current {
      width: 42px;
      height: 34px;
      display: grid;
      place-items: center;
      color: #e5d7d1;
      background: transparent;
      border-radius: 8px;
      transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
    }

    .lang-current:hover,
    .lang-switcher.is-open .lang-current {
      color: #ffffff;
      background: rgba(255,255,255,0.12);
      transform: translateY(-2px);
    }

    .lang-flag {
      width: 24px;
      height: 16px;
      display: inline-block;
      flex: 0 0 auto;
      overflow: hidden;
      border-radius: 2px;
    }

    .lang-flag-pl {
      background: linear-gradient(to bottom, #ffffff 0 50%, #dc143c 50% 100%);
    }

    .lang-flag-nl {
      background: linear-gradient(to bottom, #ae1c28 0 33.333%, #ffffff 33.333% 66.666%, #21468b 66.666% 100%);
    }

    .lang-flag-en {
      position: relative;
      background: #012169;
    }

    .lang-flag-en::before,
    .lang-flag-en::after {
      content: '';
      position: absolute;
      inset: 0;
    }

    .lang-flag-en::before {
      background:
        linear-gradient(33deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
        linear-gradient(147deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%);
    }

    .lang-flag-en::after {
      background:
        linear-gradient(to right, transparent 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%),
        linear-gradient(to bottom, transparent 32%, #ffffff 32% 42%, #c8102e 42% 58%, #ffffff 58% 68%, transparent 68%);
    }
    .lang-options {
      position: absolute;
      top: calc(100% + 14px);
      min-width: 172px;
      padding: 8px;
      display: grid;
      gap: 4px;
      background: rgba(60, 45, 40, 0.74);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 8px;
      box-shadow: 0 18px 38px rgba(0,0,0,0.22);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .lang-switcher.is-open .lang-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 10px;
      color: #f5f1ee;
      background: transparent;
      border-radius: 6px;
      font-size: 0.98rem;
      font-weight: 500;
      text-align: left;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .lang-option:hover,
    .lang-option.is-active {
      color: #ffffff;
      background: rgba(255,255,255,0.14);
    }

    .top-nav.scrolled .lang-current {
      color: #f5f1ee;
    }

    /* stan po scrollu */

    .top-nav.scrolled {
      background: rgba(60, 45, 40, 0.34);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);

      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .top-nav.scrolled a {
      color: #f5f1ee;
    }

    section#pricing {
      padding-top: 0px !important;
    }

    .pricing-table-wrapper {
      overflow-x: auto;
      background: #fff;
      border: 1px solid rgba(60, 45, 40, 0.12);
      border-radius: 8px;
      box-shadow: 0 18px 45px rgba(60, 45, 40, 0.12);
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 20px 24px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid #eadfd9;
    }

    .pricing-table th {
      background: #6f584f;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
    }

    .pricing-table td:first-child {
      width: 26%;
      color: #3c2d28;
      font-weight: 700;
    }

    .pricing-table td:nth-child(2) {
      width: 54%;
      color: #5d514d;
    }

    .pricing-table td:last-child {
      width: 20%;
      color: #3c2d28;
      font-size: 18px;
      font-weight: 700;
      white-space: nowrap;
    }

    .pricing-table tbody tr:nth-child(even) {
      background: #fbf7f5;
    }

    .pricing-table tbody tr:hover {
      background: #f1e7e2;
    }

    .pricing-table tbody tr:last-child td {
      border-bottom: 0;
    }

    /* żeby hero nie chował się pod menu */

    header {
      padding-top: 80px;
    }

    iframe {
      display: block;
      margin: auto;
    }
    
    @media(max-width:768px) {
      .hero h1 {
        font-size: 40px;
      }

      .hero p {
        font-size: 18px;
      }
    }

    @media(max-width:767px) {
      .top-nav {
        background: transparent;
        border-bottom: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      .top-nav.scrolled,
      .top-nav.menu-open {
        background: rgba(60, 45, 40, 0.34);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .nav-container {
        max-width: none;
        width: 100%;
        padding: 12px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
      }

      .menu-toggle {
        display: flex;
      }

      .nav-container > a,
      .nav-container > .lang-switcher {
        display: none;
      }

      .top-nav.menu-open .nav-container > a,
      .top-nav.menu-open .nav-container > .lang-switcher {
        display: flex;
      }

      .top-nav.menu-open .nav-container > a {
        width: min(320px, calc(100vw - 36px));
        justify-content: center;
        padding: 11px 14px;
        color: #f5f1ee;
        font-size: 1.08rem;
        border-radius: 8px;
      }

      .top-nav.menu-open .nav-container > a:first-of-type {
        margin-top: 16px;
      }

      .top-nav a:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
      }

      .lang-switcher {
        width: min(320px, calc(100vw - 36px));
        margin-top: 8px;
        justify-content: center;
      }

      .lang-current {
        display: none;
      }

      .lang-options {
        position: static;
        width: 100%;
        min-width: 0;
        padding: 0;
        display: grid;
        gap: 6px;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .lang-option {
        justify-content: center;
        padding: 11px 14px;
        color: #f5f1ee;
        background: transparent;
        font-size: 1.02rem;
      }

      .lang-option:hover,
      .lang-option.is-active {
        background: rgba(255, 255, 255, 0.14);
      }
    }