/*body*/
.property-image {
    background-image: url("../img/contact-us.jpg");
    background-size: cover;
    background-position: top center;
    height: 500px;
    width: 100vw;
    position: relative;
}

.property-title {
    position: absolute;
    font-weight: 600;
    text-shadow: 3px 0px 5px rgba(0, 0, 0, 0.5);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
}

/* custom.css */

/* Apply to entire contact section */
.contact-section {
    font-family: 'Poppins', sans-serif;
    color: #333;
    /* dark gray for readability */
    font-size: 16px;
    line-height: 1.6;
}

/* Headings */
.contact-section h4,
.contact-section h6 {
    color: #1a237e;
    /* deep blue */
}

.contact-section a {
    color: #0d6efd;
    /* Bootstrap primary blue */
}

.contact-section a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

/* Optional: lighten text-muted for better contrast */
.contact-section .text-muted {
    color: #6c757d !important;
}