/* General mobile responsiveness */
@media (max-width: 768px) {
  /* Align navigation menu */
  .nav-menu-wrapper {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .menu-button {
    display: block;
  }

  .nav-menu-wrapper.active {
    display: flex;
  }

  /* Banner image responsiveness */
  .banner img {
    width: 100%;
    height: auto;
  }

  /* Listings section */
  .listings .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .listings .col-md-3,
  .listings .col-sm-6,
  .listings .col-xs-12 {
    width: 100%;
  }

  .property-container {
    margin: 0 auto;
  }

  .property-image img {
    width: 100%;
    height: auto;
  }

  /* About section */
  .about-section .about-block-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-section .parallax-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Blog section */
  .blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .blog-item {
    width: 100%;
  }

  .blog-image-wrapper img {
    width: 100%;
    height: auto;
  }

  /* Footer responsiveness */
  .footer_box_style2,
  .footer_menu_style2,
  .footer_social_style2 {
    text-align: center;
  }

  .footer_menu_style2 ul,
  .footer_social_style2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
}