.property-wrapper {
    max-width: 1100px;
    /* controls width */
    margin: 40px auto;
    /* centers horizontally */
    padding: 0 15px;
    /* space on mobile */
}

.property-notfound-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.property-page {
    padding: 0px 15px;
    margin-top: 30px;
}


.property-title {
    text-align: center;
    /* Centers text horizontally */
    margin: -20px 0 20px;
    /* Top & bottom spacing */
    font-size: 1.6em;
    /* Optional: make it more prominent */
    font-weight: 600;
}

.property-title::after {
    content: "";
    display: block;
    margin: 10px auto 0;
    /* Space between text and line */
    width: 100px;
    /* Underline width */
    border-bottom: 3px solid #ff5a00;
    /* Change to your header accent color */
}


.note p {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin-bottom: 25px;
}

.btn-back {
    display: inline-block;
    padding: 12px 20px;
    background: #444;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-back:hover {
    background: #222;
}