* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
  font-family: "Nunito Sans", sans-serif;
  scroll-behavior: smooth;
}
/* COLOR CLASSES */
.l-blue {
  color: #29d7f0;
}
.blue {
  color: #2055C8;
}
.d-blue {
  color: #0049C7;
}
.green {
  color: #00E284;
}
.red {
  color: #F2390A;
}
.white {
  color: #FFFFFF;
}
.wb {
  background-color: #ffffff;
}
.gb {
  background: linear-gradient(0deg, #2055b0 0%, #1c8a9a 45%, #204f9f 100%);
}
/* header and navbar settings */
header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #204f9f;
  position: relative;
  justify-content: space-between;
}
#logo {
  display: flex;
  padding: 0 60px;
  height: 40px;
}
#menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 60px 0 0;
}
#menu a {
  display: block;
  color: white;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 20px;
  transition: transform 0.2s ease;
}
#menu a:hover {
  transform: scale(1.03);
  color: #ff1f1b;
}
#toggle-menu {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 30 30"><rect y="3" width="30" height="4" rx="2"/><rect y="13" width="30" height="4" rx="2"/><rect y="23" width="30" height="4" rx="2"/></svg>');
}
main {
  padding: 0 60px;
  position: relative;
}
h1 {
  margin: 0;
  padding: 0;
  font-size: 55px;
  font-weight: 700;
  line-height: 115%;
  color: white;
}
h2 {
  margin: 0;
  padding: 24px 0;
  font-size: 25px;
  font-weight: 200;
  color: white;
}
h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
h4 {
  margin: 0;
  color: #0049C7;
}
p {
  margin: 0;
  font-weight: 200;
}
a {
  text-decoration: none;
}
/* text under h3 sections */
.section-text {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
}
.content-block {
  padding-right: 20%;
}
.content-block h1 {
  margin: 40px 0 24px 0;
}
.content-block h2 {
  margin: 24px 0 40px 0;
  text-align: left;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
}
.content-block h3 {
  margin: 24px 0 40px 0;
  text-align: left;
}
.content-block h4 {
  color: #ffffff;
  font-size: 32px;
  margin: 40px 0 24px 0;
}
.content-block p {
  margin: 20px 0;
  border-radius: 7px;
  text-align: left;
  color: #ffffff;
  font-size: 18px;
}
.content-block a {
  color: white;
  text-decoration: underline;
}
/* basic section wrapper */
.wrapper {
  margin-bottom: 64px;
}
/* full width wrapper - removing main padding */
.fw {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
/* Shared Article Styles */
article {
  background-color: #ffffff;
  border-radius: 7px;
}
/* buttons and links classes */
.btn {
  border-radius: 7px;
  border: none;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.btn-blue {
  background: linear-gradient(to bottom, #29d7f0 5%, #0049c7 100%);
  background-color: #29d7f0;
  text-shadow: 0px 1px 0px #0049C7;
  transition: transform 0.2s ease, box-shadow 0.1s ease;
}
.btn-blue:hover {
  transform: scale(1.01);
  background: linear-gradient(to bottom, #0049c7 5%, #29d7f0 100%);
  background-color: #29d7f0;
}
.btn-red {
  background: linear-gradient(to bottom, #ff5643 5%, #c62d1f 100%);
  background-color: #f24537;
  text-shadow: 0px 1px 0px #810e05;
}
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px auto;
}
.cta a {
  display: inline-block;
  padding: 10px 20px;
}
.d-a {
  padding: 8px 30px;
  font-size: 20px;
}
.s-d-a {
  padding: 8px 20px;
  font-size: 18px;
}
.mobile-only {
  display: none;
  padding: 8px 30px;
  font-size: 20px;
}
/* anchors styling */
.link {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: transform 0.1s ease;
}
.link:hover {
  transform: scale(1.01);
}
.link:visited {
  color: #e3e3e3;
  text-decoration: underline;
}
.s-link {
  margin: 32px auto 0;
}
.sm-link-b {
  font-size: 16px;
}
.responsive-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.responsive-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nswiper {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 30px;
  padding: 20px 0 20px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nswiper::-webkit-scrollbar {
  display: none;
}
.horizontal {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
  border-radius: 7px;
}
/* box-shadow CLASSES */
.box-shadow-l {
  -webkit-box-shadow: 0px 0px 15px 2px #e0e0e0;
  -moz-box-shadow: 0px 0px 15px 2px #e0e0e0;
  box-shadow: 0px 0px 15px 2px #e0e0e0;
}
.box-shadow-d {
  -webkit-box-shadow: 0px 0px 15px 2px #757575;
  -moz-box-shadow: 0px 0px 15px 2px #757575;
  box-shadow: 0px 0px 15px 2px #757575;
}
.box-shadow-hover {
  -webkit-box-shadow: 0px 0px 15px 2px #11666a;
  -moz-box-shadow: 0px 0px 15px 2px #11666a;
  box-shadow: 0px 0px 15px 2px #11666a;
  transition: transform 0.1s ease;
}
.box-shadow-hover:hover {
  transform: scale(1.01);
  -webkit-box-shadow: 0px 0px 15px 2px #83a7a9;
  -moz-box-shadow: 0px 0px 15px 2px #83a7a9;
  box-shadow: 0px 0px 15px 2px #83a7a9;
}
.star {
  color: lightgray;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.filled {
  color: #00E284;
}
.partial {
  position: relative;
  color: lightgray;
  background: linear-gradient(to right, #00ff95 50%, #d3d3d3 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partial::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00ff95 50%, #d3d3d3 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Footer */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  /* Two columns, responsive */
  gap: 20px;
  text-align: left;
}
.footer-links .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  font-size: 20px;
  text-align: left;
}
/* Consolidated Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
  }
  #logo {
    height: 30px;
  }
  #logo img {
    width: 100%;
  }
  #menu {
    margin: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  #toggle-menu {
    display: flex;
  }
  .mobile-only {
    display: block;
    margin-top: 16px;
  }
  main {
    padding: 0;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 20px;
    font-weight: 200;
  }
  h3 {
    font-size: 30px;
  }
  .section-text {
    font-size: 20px;
  }
  .content-block {
    padding: 0 15px;
  }
  .nswiper {
    padding: 10px 0 10px 15px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    /* Make it a single column on smaller screens */
  }
  .responsive-row {
    flex-direction: column;
    align-items: center;
  }
}
body.ziadost footer {
  display: none;
}
body.ziadost #menu {
  display: none;
}
body.ziadost #toggle-menu {
  display: none;
}
body.ziadost #chcempozickunav {
  display: none;
}
