@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins/Poppins-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  size-adjust: 98%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0;
}

/* Defining the Poppins font for bold weight */
@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins/Poppins-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  size-adjust: 98%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0;
}

:root {
  --brand: rgb(18, 21, 104);
  --neutral1: rgb(18, 21, 104);
  --neutral2: rgb(255, 255, 255);
  --vertical-scrollbar-width: 0px
}

* {
  box-sizing: border-box
}

body {
  -webkit-text-size-adjust: 100%;
  background-color: var(--neutral2);
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  position: relative;
  margin: 0;
  -webkit-font-smoothing: antialiased
}

#container {
  height: 100%;
  margin: auto;
  position: relative;
  margin-top: 0
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0
}

.contact-wrapper, .contact-wrapper-alt, .header-wrapper {
  position: relative;
  margin: 0 -9999px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden
}

.header-wrapper {
  min-height: 70vh;
  background: linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .5))
}

.contact-wrapper, .contact-wrapper-alt {
  min-height: 40vh;
  background: linear-gradient(rgba(255, 255, 255, .6), rgba(255, 255, 255, .6))
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.contact-content, .header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit
}

.contact-content {
  align-items: center;
  text-align: center;
  padding: 20px 0
}

.contact-text h2, .header-text h1 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--neutral1);
  margin-bottom: 16px
}

.subheader-text {
  margin-bottom: 24px
}

.subheader-text p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral1);
  margin-bottom: 0
}

.button a {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  text-decoration: none;
  border-radius: 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: background-color .3s, color .3s, border-color .3s
}

.button a:hover {
  background-color: var(--brand);
  color: var(--neutral2);
  border-color: var(--brand)
}

.button a:active {
  background-color: #0c0f00;
  border-color: #0c0f50;
  color: var(--neutral2)
}

.section {
  margin: 60px 0;
  text-align: center
}

.section h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px
}

.section p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral1)
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.about-image {
  background-color: rgba(200, 200, 200, .3);
  padding: 20px;
  border-radius: 0
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 0
}

.about-text {
  text-align: left
}

.stats-section {
  background-color: #121568;
  color: var(--neutral2);
  padding: 40px 0;
  margin: 0 -9999px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw
}

.stats-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 120px
}

.stats-column {
  min-width: 150px;
  text-align: center;
  margin-top: -5vh
}

.stats-column h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--neutral2);
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 44px
}

.stats-column p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral2);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px
}

.why-us-section {
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.why-us-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.why-us-item {
  background-color: transparent;
  padding: 20px;
  border-radius: 0;
  text-align: left;
  position: relative
}

.why-us-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background-color: red
}

.why-us-item h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 30px
}

.why-us-item p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral1)
}

.why-us-column:nth-child(2) {
  display: flex;
  flex-direction: column
}

.why-us-column:nth-child(2) .why-us-item {
  background-color: transparent;
  padding: 0;
  flex: 1;
  display: flex
}

.why-us-column:nth-child(2) .why-us-item::before {
  display: none
}

.why-us-column:nth-child(2) .why-us-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.reviews-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.review {
  flex: 1;
  background-color: var(--neutral2);
  padding: 20px;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  position: relative;
  text-align: left;
  margin: 20px 0
}

.review::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: red
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.review img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid red
}

.review p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral1);
  margin: 0
}

.review p strong {
  font-weight: 700;
  font-size: 16px
}

.review-text {
  font-size: 14px;
  line-height: 22px
}

.footer {
  background-color: #121568;
  color: var(--neutral2);
  padding: 40px 0;
  margin: 0 -9999px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.footer-column {
  flex: 1;
  min-width: 200px;
  text-align: left
}

.footer-column h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--neutral2);
  margin-bottom: 12px;
  font-size: 18px
}

.footer-column a, .footer-column p, .email-link {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral2);
  margin-bottom: 0;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-column a:hover, .email-link:hover {
  text-decoration: underline
}

.footer-column img {
  width: 20px;
  height: 20px
}

.social-icons {
  display: flex;
  gap: 12px
}

.social-icons a {
  display: inline-block
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: opacity .3s
}

.social-icons a:hover img {
  opacity: .8
}

.footer-bottom {
  background-color: #000;
  color: var(--neutral2);
  padding: 15px 0;
  margin: 0 -9999px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.footer-bottom p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral2);
  margin: 0;
  font-size: 12px
}

.footer-bottom a {
  color: var(--neutral2);
  text-decoration: none
}

.footer-bottom a:hover {
  text-decoration: underline
}

.footer-bottom img {
  width: 90px;
  height: auto;
  opacity: .6;
  filter: grayscale(1);
  transition: opacity .3s, filter .3s;
  margin-right: 2vw
}

.footer-bottom img:hover {
  opacity: 1;
  filter: grayscale(0)
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative
}

.nav-menu {
  display: flex;
  align-items: center
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px
}

.nav-menu li a {
  display: inline-block;
  padding: 14px 20px;
  background-color: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  text-decoration: none;
  border-radius: 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: background-color .3s, color .3s, border-color .3s
}

.nav-menu li a:hover {
  background-color: var(--brand);
  color: var(--neutral2);
  border-color: var(--brand)
}

.nav-menu li a:active {
  background-color: #0c0f00;
  border-color: #0c0f50;
  color: var(--neutral2)
}

.hamburger {
  display: none;
  cursor: pointer;
  background: 0 0;
  border: none;
  font-size: 24px;
  color: var(--brand);
  order: 1
}

.logo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center
}

.logo img {
  width: 100%;
  max-width: 100px;
  height: auto
}

@media (max-width:479px) {
  .footer-column h3:nth-of-type(2) {
    margin-top: 8vh
  }

  #container {
    width: 320px;
    margin-top: 0
  }

  body {
    min-width: 320px
  }

  .logo {
    margin: 0;
    position: static;
    display: flex;
    align-items: center
  }

  .logo img {
    max-width: 70px
  }

  .contact-text h2, .header-text h1 {
    font-size: 34px;
    line-height: 42px
  }

  .subheader-text {
    margin-bottom: 20px
  }

  .subheader-text p {
    font-size: 16px;
    line-height: 24px;
    text-align: left
  }

  .section {
    margin: 40px 0
  }

  .section h2 {
    font-size: 28px;
    line-height: 34px
  }

  .section p {
    font-size: 15px;
    line-height: 23px;
    text-align: left
  }

  .header-wrapper {
    padding: 10px 0;
    min-height: 40vh
  }

  .contact-wrapper {
    padding: 10px 0;
    min-height: 35vh
  }

  .contact-content, .header-content {
    padding: 15px 15px
  }

  .button a {
    font-size: 14px;
    padding: 12px 24px
  }

  .about-image img {
    max-width: 300px
  }

  .about-image {
    padding: 15px
  }

  .stats-content {
    flex-direction: column;
    align-items: center
  }

  .stats-column {
    margin-bottom: 10px
  }

  .stats-column h3 {
    font-size: 28px;
    line-height: 34px
  }

  .stats-column p {
    font-size: 14px;
    line-height: 22px
  }

  .why-us-section {
    flex-direction: column;
    align-items: center
  }

  .why-us-column {
    width: 100%
  }

  .why-us-item h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px
  }

  .why-us-column:nth-child(2) .why-us-item img {
    max-height: none
  }

  .reviews-section {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .review {
    width: 100%;
    max-width: 300px;
    margin: 20px auto
  }

  .review img {
    width: 40px;
    height: 40px;
    border: 2px solid red
  }

  .review p strong {
    font-size: 14px
  }

  .review-text {
    font-size: 12px;
    line-height: 20px
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .footer-column {
    margin-bottom: 20px
  }

  .footer-column img {
    width: 16px;
    height: 16px
  }

  .social-icons img {
    width: 24px;
    height: 24px
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px
  }

  .footer-column a, .footer-column p {
    font-size: 12px;
    margin-bottom: 0
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }

  .footer-bottom img {
    width: 70px
  }

  .faq-section {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .faq-item {
    width: 100%;
    max-width: 300px;
    margin: 20px auto
  }

  .faq-item h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px
  }

  .faq-item p {
    font-size: 12px;
    line-height: 20px;
    text-align: left
  }

  .offer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px
  }

  .offer-item {
    width: 100%;
    max-width: 300px;
    padding: 16px
  }

  .offer-item img {
    margin-bottom: 16px
  }

  .offer-item h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px
  }

  .offer-item p {
    font-size: 13px;
    line-height: 20px
  }

  .hamburger {
    display: block
  }

  .nav-menu {
    display: none
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 15px
  }

  .nav-menu li {
    margin: 8px 0
  }

  .nav-menu li a {
    width: 100%;
    text-align: center;
    padding: 10px 10px;
    font-size: 13px
  }

  .ikonka-kolo {
    width: 14px;
    height: 14px;
    background-color: #01f0f8;
  }

  .ikonka-kolo img {
    width: 10px;
    height: 10px;
    transform: translate(2px, 2px);
  }
}

@media (max-width:767px) and (min-width:480px) {
  #container {
    width: 480px;
    margin-top: 0
  }

  body {
    min-width: 480px;
    overflow-x: hidden
  }

  .logo {
    margin: 0;
    display: flex;
    align-items: center
  }

  .logo img {
    max-width: 80px
  }

  .contact-text h2, .header-text h1 {
    font-size: 38px;
    line-height: 46px
  }

  .subheader-text {
    margin-bottom: 22px
  }

  .subheader-text p {
    font-size: 18px;
    line-height: 26px;
    text-align: left
  }

  .section {
    margin: 50px 0
  }

  .section h2 {
    font-size: 30px;
    line-height: 36px
  }

  .section p {
    font-size: 17px;
    line-height: 25px;
    text-align: left
  }

  .header-wrapper {
    padding: 15px 0;
    min-height: 45vh
  }

  .contact-wrapper {
    padding: 15px 0;
    min-height: 40vh
  }

  .contact-content, .header-content {
    padding: 15px 15px
  }

  .button a {
    font-size: 15px;
    padding: 13px 26px
  }

  .about-image img {
    max-width: 350px
  }

  .about-image {
    padding: 15px
  }

  .stats-content {
    flex-direction: column;
    align-items: center
  }

  .stats-column {
    margin-bottom: 12px
  }

  .stats-column h3 {
    font-size: 30px;
    line-height: 36px
  }

  .stats-column p {
    font-size: 15px;
    line-height: 23px
  }

  .why-us-section {
    flex-direction: column;
    align-items: center
  }

  .why-us-column {
    width: 100%
  }

  .why-us-item h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px
  }

  .why-us-column:nth-child(2) .why-us-item img {
    max-height: none
  }

  .reviews-section {
    flex-direction: column;
    align-items: center;
    gap: 10px
  }

  .review {
    width: 100%;
    max-width: 350px;
    margin: 20px auto
  }

  .review img {
    width: 45px;
    height: 45px;
    border: 2px solid red
  }

  .review p strong {
    font-size: 15px
  }

  .review-text {
    font-size: 13px;
    line-height: 21px
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .footer-column {
    margin-bottom: 20px
  }

  .footer-column img {
    width: 18px;
    height: 18px
  }

  .social-icons img {
    width: 26px;
    height: 26px
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px
  }

  .footer-column a, .footer-column p {
    font-size: 13px;
    margin-bottom: 0
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }

  .footer-bottom img {
    width: 80px
  }

  .faq-section {
    flex-direction: column;
    align-items: center;
    gap: 12px
  }

  .faq-item {
    width: 100%;
    max-width: 350px;
    margin: 20px auto
  }

  .faq-item h3 {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 12px
  }

  .faq-item p {
    font-size: 13px;
    line-height: 21px
  }

  .other-contact-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px
  }

  .other-contact-form, .other-contact-image {
    width: 100%;
    max-width: 100%
  }

  .other-contact-form form {
    gap: 14px
  }

  .other-contact-form label {
    font-size: 14px
  }

  .other-contact-form input, .other-contact-form textarea {
    font-size: 14px;
    padding: 10px
  }

  .other-contact-form button {
    font-size: 15px;
    padding: 13px 20px
  }

  .offer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px
  }

  .offer-item {
    width: 100%;
    max-width: 350px;
    padding: 18px
  }

  .offer-item img {
    margin-bottom: 18px
  }

  .offer-item h3 {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 12px
  }

  .offer-item p {
    font-size: 14px;
    line-height: 21px
  }

  .mission-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .mission-text h2 {
    font-size: 22px
  }

  .mission-text p {
    font-size: 14px;
  }

  .values-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: left
  }

  .values-image img {
    height: auto;
    max-height: 300px
  }

  .values-text p {
    font-size: 14px
  }

  .contact-wrapper h2, .contact-wrapper-alt h2 {
    font-size: 22px;
    line-height: 1.4
  }

  .contact-wrapper p, .contact-wrapper-alt p {
    font-size: 16px;
    line-height: 1.6
  }

  .contact-wrapper .button a, .contact-wrapper-alt .button a {
    font-size: 16px;
    padding: 12px 24px
  }

  .hamburger {
    display: block
  }

  .nav-menu {
    display: none
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px
  }

  .nav-menu li {
    margin: 10px 0
  }

  .nav-menu li a {
    width: 100%;
    text-align: center;
    padding: 12px 12px;
    font-size: 14px
  }

  .ikonka-kolo {
    width: 14px;
    height: 14px;
    background-color: #01f0f8;
  }

  .ikonka-kolo img {
    width: 10px;
    height: 10px;
    transform: translate(2px, 2px);
  }
}

@media (max-width:1199px) and (min-width:768px) {
  #container {
    width: 768px;
    margin-top: 0
  }

  body {
    min-width: 768px;
    overflow-x: hidden
  }

  .logo {
    margin: 0;
    display: flex;
    align-items: center
  }

  .logo img {
    max-width: 90px
  }

  .contact-text h2, .header-text h1 {
    font-size: 52px;
    line-height: 62px
  }

  .subheader-text {
    margin-bottom: 24px
  }

  .subheader-text p {
    font-size: 19px;
    line-height: 27px
  }

  .section {
    margin: 55px 0
  }

  .section h2 {
    font-size: 36px;
    line-height: 44px
  }

  .section p {
    font-size: 18px;
    line-height: 26px
  }

  .header-wrapper {
    padding: 20px 0;
    min-height: 70vh
  }

  .contact-wrapper {
    padding: 20px 0;
    min-height: 45vh
  }

  .contact-content, .header-content {
    padding: 20px 20px
  }

  .button a {
    font-size: 16px;
    padding: 14px 28px
  }

  .about-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px
  }

  .about-image, .about-text {
    flex: 1;
    max-width: 50%
  }

  .about-image img {
    max-width: 100%
  }

  .about-image {
    padding: 20px
  }

  .stats-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 100px
  }

  .stats-column {
    flex: 1
  }

  .stats-column h3 {
    font-size: 32px;
    line-height: 40px
  }

  .stats-column p {
    font-size: 16px;
    line-height: 24px
  }

  .why-us-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px
  }

  .why-us-column {
    flex: 1
  }

  .why-us-item h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px
  }

  .why-us-column:nth-child(2) .why-us-item img {
    max-height: none
  }

  .reviews-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px
  }

  .review {
    min-width: 200px
  }

  .review img {
    border: 2px solid red
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between
  }

  .footer-column {
    flex: 1
  }

  .faq-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap
  }

  .faq-item {
    flex: 1;
    min-width: 220px;
    margin: 20px 0
  }

  .faq-item h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 14px
  }

  .faq-item p {
    font-size: 14px;
    line-height: 22px
  }

  .other-contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px
  }

  .other-contact-image {
    max-width: 45%
  }

  .other-contact-form {
    max-width: 50%
  }

  .other-contact-form form {
    gap: 16px
  }

  .other-contact-form label {
    font-size: 14px
  }

  .other-contact-form input, .other-contact-form textarea {
    font-size: 14px;
    padding: 10px
  }

  .other-contact-form button {
    font-size: 16px;
    padding: 14px 22px
  }

  .offer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px
  }

  .offer-item {
    flex: 1;
    min-width: 250px;
    padding: 20px
  }

  .offer-item img {
    margin-bottom: 20px
  }

  .offer-item h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px
  }

  .offer-item p {
    font-size: 14px;
    line-height: 22px
  }

  .nav-menu ul {
    gap: 15px
  }

  .nav-menu li a {
    padding: 10px 10px;
    font-size: 14px
  }
}

@media (min-width:1200px) {
  #container {
    width: 1200px;
    margin-top: 0
  }

  body {
    min-width: 1200px;
    overflow-x: hidden
  }

  .logo {
    margin: 0;
    display: flex;
    align-items: center
  }

  .logo img {
    max-width: 120px
  }

  .contact-text h2, .header-text h1 {
    font-size: 68px;
    line-height: 80px
  }

  .subheader-text {
    margin-bottom: 24px
  }

  .subheader-text p {
    font-size: 19px;
    line-height: 29px
  }

  .section h2 {
    font-size: 42px;
    line-height: 53px
  }

  .section p {
    font-size: 18px;
    line-height: 28px
  }

  .header-wrapper {
    padding: 20px 0;
    min-height: 70vh
  }

  .contact-wrapper {
    padding: 20px 0;
    min-height: 40vh
  }

  .header-content {
    max-width: 800px;
    margin-left: calc((100% - 1200px)/ 2);
    margin-right: auto;
    padding: 20px 20px
  }

  .contact-content {
    padding: 20px 0
  }

  .button a {
    font-size: 18px;
    padding: 16px 32px
  }

  .about-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px
  }

  .about-image, .about-text {
    flex: 1;
    max-width: 50%
  }

  .about-image img {
    max-width: 100%
  }

  .about-image {
    padding: 20px
  }

  .stats-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 120px
  }

  .stats-column {
    flex: 1
  }

  .stats-column h3 {
    font-size: 36px;
    line-height: 44px
  }

  .stats-column p {
    font-size: 16px;
    line-height: 24px
  }

  .why-us-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px
  }

  .why-us-column {
    flex: 1
  }

  .why-us-item h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px
  }

  .why-us-column:nth-child(2) .why-us-item img {
    max-height: none
  }

  .reviews-section {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px
  }

  .review img {
    border: 2px solid red
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between
  }

  .footer-column {
    flex: 1
  }

  .other-contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px
  }

  .other-contact-image {
    max-width: 50%
  }

  .other-contact-form {
    max-width: 50%
  }

  .other-contact-form form {
    gap: 18px
  }

  .other-contact-form label {
    font-size: 15px
  }

  .other-contact-form input, .other-contact-form textarea {
    font-size: 15px;
    padding: 12px
  }

  .other-contact-form button {
    font-size: 16px;
    padding: 14px 24px
  }

  .offer-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px
  }

  .offer-item {
    flex: 1;
    min-width: 280px;
    padding: 24px
  }

  .offer-item img {
    margin-bottom: 20px
  }

  .offer-item h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 14px
  }

  .offer-item p {
    font-size: 15px;
    line-height: 24px
  }

  .nav-menu ul {
    gap: 30px
  }
}

.faq-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.faq-item {
  flex: 1;
  background-color: rgba(18, 21, 104, .05);
  padding: 20px;
  border: 1px solid rgba(18, 21, 104, .2);
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .06);
  text-align: left;
  margin: 20px 0;
  transition: transform .2s ease, box-shadow .2s ease
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.faq-item h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  font-size: 18px
}

.faq-item p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  color: var(--neutral1);
  font-size: 14px;
  line-height: 22px;
  margin: 0
}

.other-contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
  flex-wrap: wrap
}

.other-contact-image {
  flex: 1;
  max-width: 500px
}

.other-contact-image img {
  width: 100%;
  height: auto;
  border-radius: 3px
}

.other-contact-form {
  flex: 1;
  min-width: 300px;
  background-color: rgba(18, 21, 104, .05);
  padding: 30px;
  border: 1px solid rgba(18, 21, 104, .2);
  border-radius: 5px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .06)
}

.map-container {
  width: 100%;
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1)
}

.other-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.other-contact-form label {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: var(--brand);
  font-size: 14px
}

.other-contact-form input, .other-contact-form textarea {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  padding: 10px;
  border: 1px solid rgba(18, 21, 104, .3);
  border-radius: 4px;
  resize: vertical;
  background-color: #fff
}

.other-contact-form button {
  padding: 14px 20px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--brand);
  color: var(--neutral2);
  border: none;
  cursor: pointer;
  transition: background-color .3s ease
}

.other-contact-form button:hover {
  background-color: #0a0d50
}

.offer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px
}

.offer-item {
  flex: 1;
  min-width: 280px;
  background-color: rgba(18, 21, 104, .05);
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .06);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease
}

.offer-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12)
}

.offer-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0
}

.offer-image img, .offer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px 8px 0 0
}

@media (max-width: 600px) {
  .offer-image-ebay {
    height: auto;
  }
  .offer-image-ebay img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

.offer-item h3 {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin: 16px 16px 8px
}

.offer-item p {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0 16px 20px
}

.offer-item-wide {
  margin-top: 30px;
  min-height: 500px
}

.offer-item-wide .offer-image {
  height: 500px
}

.offer-item-wide h3 {
  margin-top: 24px;
  font-size: 20px
}

.offer-item-wide p {
  font-size: 15px;
  margin-bottom: 30px
}

.mission-wrapper, .values-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto
}

.mission-image, .values-image {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 8px
}

.mission-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* dopasuj, zachowując proporcje, bez przycinania */
  object-position: center;  /* wyśrodkuj obraz w dostępnej przestrzeni */
  display: block;
}

.values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.mission-text, .values-text {
  flex: 2;
  min-width: 300px
}

.mission-text h2, .values-text h2 {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px
}

.faq-section p, .mission-section p, .mission-text p, .offer-section p, .values-section p, .values-text p {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  text-align: center;

}

.mission-text p, .values-text p{
  text-align: left;
}

.faq-section h2, .offer-section h2, .values-section h2 {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px
}

.mission-section h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px
}

.hidden {
  display: none
}

.shop-links .offer-item {
  text-align: center
}

.shop-btn {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: background .3s ease
}

.allegro-btn {
  background-color: #ff5a00
}

.allegro-btn:hover {
  background-color: #e64b00
}

.ebay-btn {
  background-color: #0064d2
}

.ebay-btn:hover {
  background-color: #004a9d
}

.olx-btn {
  background-color: #23a455
}

.olx-btn:hover {
  background-color: #1d8a48
}

.offer-item-olx {
  flex-basis: 100%;
  width: 100%;
  min-height: 0;
  padding: 16px
}

.offer-item-olx .offer-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center
}

.offer-item-olx .offer-image img {
  width: auto;
  margin-top: 3vh;
  max-width: 60%;
  max-height: 100%;
  object-fit: contain
}

.faq-section-container, .footer, .footer-bottom, .mission-section, .offer-section, .other-contact-section, .reviews-section-container, .stats-section, .values-section, .why-us-section-container {
  content-visibility: auto;
  contain-intrinsic-size: 800px 600px
}

.about-section {
  content-visibility: visible;
  contain-intrinsic-size: auto
}

.about-image img {
  aspect-ratio: 600/583;
  width: 100%;
  height: auto;
  display: block
}

.nav-menu.active {
  display: block
}

.contact-wrapper .hero-img, .contact-wrapper .hero-media img, .contact-wrapper-alt .hero-img, .contact-wrapper-alt .hero-media img, .header-wrapper .hero-img, .header-wrapper .hero-media img {
  opacity: .5
}

.header-bar {
  position: relative
}

@media (max-width:767px) {
  .hamburger {
    display: block
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--neutral2);
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 1000
  }

  .nav-menu.active {
    display: block
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 15px
  }

  .nav-menu li a {
    width: 100%;
    text-align: left;
    padding: 10px 15px
  }
}

.header-bar {
  justify-content: space-between
}

@media (min-width:768px) {
  .hamburger {
    display: none
  }

  .nav-menu {
    display: flex !important;
    position: static;
    width: auto
  }
}

.about-section {
  content-visibility: visible !important;
  contain-intrinsic-size: auto !important
}

.about-image {
  aspect-ratio: 600/583;
  max-width: 400px;
  width: 100%
}

.about-image img {
  aspect-ratio: 600/583;
  width: 100%;
  height: auto;
  display: block
}

.product-details details {
  border: 2px solid var(--brand);
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 10px;
}

.product-details summary {
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
  font-size: 16px;
}

.product-details {
  max-width: 600px;
  margin: 20px auto;
  font-family: Poppins, sans-serif;
}

.product {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}

.product img.product-image {
  max-width: 256px;
  max-height: 256px;
  object-fit: contain;
  border-radius: 5px;
  display: block;
}

.product-text {
  flex: 1;
  text-align: left;
  font-family: Arial, sans-serif;
}

.product-text>div:first-child {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: var(--brand);
}

.product-text p {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

.product-text table th,
.product-text table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;
  text-align: left;
}

.product-text table th {
  background-color: #eee;
  font-weight: bold;
}

@media (max-width: 600px) {
  .product {
    flex-direction: column;
    align-items: flex-start;
  }

  .product img.product-image {
    margin-bottom: 10px;
  }
}

.product-noze {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}

.product-noze img.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
  display: block;
  align-self: center;
}

.product-noze .product-text {
  width: 100%;
  text-align: left;
  font-family: Arial, sans-serif;
}

.product-noze .product-text>div:first-child {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: var(--brand);
}

.product-noze .product-text>div {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--brand);
}

.product-noze .product-text p {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-noze .product-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

.product-noze .product-text table th,
.product-noze .product-text table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;
  text-align: left;
}

.product-noze .product-text table th {
  background-color: #eee;
  font-weight: bold;
}

.product-details details p {
  text-align: left;
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

@media (max-width:767px) {
  .offer-item,
  .offer-item-wide {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .ikonka-kolo {
    width: 14px;
    height: 14px;
    background-color: #01f0f8;
  }

  .ikonka-kolo img {
    width: 10px;
    height: 10px;
    transform: translate(2px, 2px);
  }
}

@media (max-width: 600px) {
  .product-details details {
    padding: 0 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .product-details {
    margin: 0;
  }

  .product-details details table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
  }

  .product-details details table th,
  .product-details details table td {
    padding: 0 0;
  }
}

.ikonka-kolo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #F8C301;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-decoration: none;
  vertical-align: middle;
}

.ikonka-kolo img {
  width: 20px;
  height: 20px;
  transform: translate(4px, 4px);
}

@media (max-width: 768px) {
  .ikonka-kolo {
    width: 24px;
    height: 24px;
    background-color: #F8C301;
  }

  .ikonka-kolo img {
    width: 18px;
    height: 18px;
    transform: translate(3px, 3px);
  }
}

/* Styling for the wide offer item details */
.offer-item-wide .product-details {
  max-width: 100%;
  padding: 0 20px;
}

.offer-item-wide .products {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.offer-item-wide .products h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: var(--brand);
  font-size: 18px;
  margin: 20px 0 10px;
  text-align: center;
  width: 100%;
}

/* Category container for each section (Listwy, Oprawki, etc.) */
.offer-item-wide .category-section {
  flex: 1 1 calc(50% - 15px); /* Two sections per row on wide screens */
  min-width: 300px;
  flex-direction: column;
  gap: 15px;
}

/* Individual product items within each category */
.offer-item-wide .product {
  flex: 1 1 100%;
  min-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  background-color: #f9f9f9;
}

.offer-item-wide .product img.product-image {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
  border-radius: 5px;
  display: block;
}

.offer-item-wide .product-text {
  flex: 1;
  text-align: left;
}

.offer-item-wide .product-text > div:first-child {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 8px;
  color: var(--brand);
}

.offer-item-wide .product-text p {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* Responsive adjustments for narrow screens */
@media (max-width: 767px) {
  .offer-item-wide .category-section {
      flex: 1 1 100%; /* One section per row on narrow screens */
      min-width: 100%;
  }

  .offer-item-wide .product {
      flex: 1 1 100%;
      min-width: 100%;
  }

  .offer-item-wide .product img.product-image {
      max-width: 150px;
      max-height: 150px;
  }

  .offer-item-wide .product-details {
      padding: 0 10px;
  }

  .offer-item-wide .products h4 {
      font-size: 16px;
      margin: 15px 0 5px;
  }
}

@media (max-width: 600px) {
  .offer-item-wide .product {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .offer-item-wide .product img.product-image {
      margin-bottom: 10px;
  }
}


.slider {
  position: relative;
  width: 200px;
  height: 200px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-images {
  width: 100%;
  height: 100%;
  /* Usuwamy position: relative, aby nie absolutyzować obrazków */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-image {
  object-fit: contain !important;
  height: 100%;          /* Wysokość narzucona kontenerem */
  width: auto;           /* Szerokość dostosowana, by zachować proporcje */
  object-fit: contain;   /* Utrzymuje proporcje bez przycinania */
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;    /* Możesz spróbować usunąć, jeśli wolisz flex */
  display: block;
  border-radius: 5px;    /* Zaokrąglone rogi jak w product-image */
  z-index: 1;
}

.slider-image.active {
  opacity: 1;
  z-index: 2;
  position: relative;    /* Aktywny obraz jest w normalnym flow */
}

.slider-btn {
  position: absolute;
  top: 0;
  width: 50px;               /* Szeroka strefa ułatwiająca klik */
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Styl strzałek - zastąpione trójkątami CSS */
.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

/* Pokazuj przyciski po najechaniu na slider */
.slider:hover .slider-btn {
  opacity: 1;
}

/* Trójkąty jako strzałki */

.slider-btn.prev::before,
.slider-btn.next::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Lewy trójkąt (wskazuje w lewo) */
.slider-btn.prev::before {
  border-width: 12px 16px 12px 0;
  border-color: transparent #007da3 transparent transparent;
}

/* Prawy trójkąt (wskazuje w prawo) */
.slider-btn.next::before {
  border-width: 12px 0 12px 16px;
  border-color: transparent transparent transparent #007da3;
}

/* Podświetlenie trójkątów na hover */
.slider-btn:hover::before {
  opacity: 1;
}
