@media screen and (max-width: 768px) {
  /* Ensure the nav container takes full width and moves up */
  .u-custom-menu {
    width: 100%;
    margin-top: -40px; /* Adjust this value as needed */
  }
  /* Stack each menu item vertically and right-align text */
  .u-nav.u-unstyled li {
    display: block;
    width: 100%;
    text-align: right;
  }
  /* Style the links to fill the container */
  .u-nav.u-unstyled li a {
    display: block;
    padding: 10px 20px;
  }
}
.u-section-1 .u-sheet-1 {
  min-height: 835px;
}

.u-section-1 .u-post-details-1 {
  min-height: 375px;
  margin-top: 60px;
  margin-bottom: -10px;
}

.u-section-1 .u-container-layout-1 {
  padding: 30px;
}

.u-section-1 .u-image-1 {
  height: 486px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.u-section-1 .u-text-1 {
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 0;
}

.u-section-1 .u-metadata-1 {
  margin-top: 30px;
  margin-bottom: 0;
  margin-left: 0;
}

.u-section-1 .u-text-2 {
  margin-bottom: 0;
  margin-top: 20px;
  margin-left: 0;
}

@media (max-width: 1199px) {
  .u-section-1 .u-image-1 {
    margin-left: initial;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 782px;
  }

  .u-section-1 .u-post-details-1 {
    margin-bottom: 60px;
  }

  .u-section-1 .u-image-1 {
    height: 423px;
    margin-left: initial;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 722px;
  }

  .u-section-1 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-1 .u-image-1 {
    height: 354px;
    margin-top: 9px;
    margin-left: initial;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 656px;
  }

  .u-section-1 .u-image-1 {
    height: 275px;
    margin-left: initial;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  /* Use stretch so each item in the row is the same height */
  align-items: stretch;
  text-align: center;
  padding: 20px;
  background-color: #333; /* adjust as needed */
}

.grid-item {
  display: flex;
  flex-direction: column;      /* stack child elements vertically */
  justify-content: center;     /* center them vertically within the grid item */
  align-items: center;         /* center them horizontally */
  padding: 10px;
  border-radius: 4px;
}

/* Map iframe styling */
.map iframe {
  width: 100%;
  height: 200px; /* adjust height if needed */
  border: 0;
}

/* Address styling */
.address {
  margin-top: 10px;
  font-style: normal;
}

/* QR Image styling */
.qr-image {
  justify-content: flex-start;
  max-width: 100%;
  height: auto;
}
.grid-item.qr-text {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertikal zentrieren */
  align-items: center;      /* horizontal zentrieren */
  width: 100%;
  height: 100%;
}

.qr-image {
  width: 100%;
}
/* Support text styling */
.support-text {
  margin-top: 10px;
}

/* Social Icons styling */
.social-icons a {
  margin: 0 5px;
  text-decoration: none;
}

/* Mimic the original icon sizing and SVG behavior */
.u-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

/* Ensure SVG fills inherit the white color */
.u-svg-link,
.u-svg-content {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

/* Login link styling */
.u-login {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #555;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}