.property-not-found {
  padding: 80px 0;
  text-align: center;
  min-height: 500px;
}
.property-not-found-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid #d9d9d9;
}
.property-not-found-icon i {
  font-size: 60px;
  color: rgb(227, 113, 44);
}
.property-not-found h1 {
  font-size: 36px;
  color: rgb(40, 40, 40);
  margin-bottom: 20px;
  font-weight: 700;
}
.property-not-found p {
  font-size: 18px;
  color: rgb(140, 140, 140);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.property-not-found-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
.property-not-found-buttons a {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.property-not-found-buttons a i {
  font-size: 18px;
}
.property-not-found-buttons a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary-custom {
  background-color: rgb(227, 113, 44);
  color: white;
  border: 1px solid rgb(227, 113, 44);
}
.btn-primary-custom:hover {
  background-color: #c2591a;
  color: white;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary-custom {
  background-color: rgb(240, 240, 240);
  color: rgb(40, 40, 40);
  border: 1px solid #d9d9d9;
}
.btn-secondary-custom:hover {
  background-color: #e3e3e3;
  color: rgb(40, 40, 40);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-suggestion {
  margin-top: 60px;
  padding: 40px;
  background-color: rgb(240, 240, 240);
  border-radius: 8px;
  border: 1px solid #d9d9d9;
}
.search-suggestion h3 {
  font-size: 24px;
  color: rgb(40, 40, 40);
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
}
.search-suggestion .row {
  margin-top: 30px;
}
.search-suggestion .col-md-4 {
  margin-bottom: 30px;
}
.search-suggestion .col-md-4 h5 {
  font-size: 18px;
  color: rgb(227, 113, 44);
  margin-bottom: 15px;
  font-weight: 600;
}
.search-suggestion .col-md-4 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-suggestion .col-md-4 ul li {
  margin-bottom: 12px;
}
.search-suggestion .col-md-4 ul li a {
  color: rgb(40, 40, 40);
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
}
.search-suggestion .col-md-4 ul li a:hover {
  color: rgb(227, 113, 44);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .property-not-found {
    padding: 50px 0;
  }
  .property-not-found-icon {
    width: 100px;
    height: 100px;
  }
  .property-not-found-icon i {
    font-size: 45px;
  }
  .property-not-found h1 {
    font-size: 28px;
  }
  .property-not-found p {
    font-size: 16px;
    padding: 0 20px;
  }
  .property-not-found-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .property-not-found-buttons a {
    width: 200px;
    text-align: center;
  }
  .search-suggestion {
    padding: 25px 15px;
  }
  .search-suggestion h3 {
    font-size: 20px;
  }
  .search-suggestion .col-md-4 h5 {
    font-size: 16px;
  }
  .search-suggestion .col-md-4 ul li a {
    font-size: 14px;
  }
}