/* ================= GLOBAL IMPROVEMENTS ================= */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* PROPERTY CARD POLISH */
.property-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.property-card:hover {
    transform: translateY(-3px);
}

.property-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.property-info {
    padding: 12px 14px;
}

.property-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* FILTER CARD */
.filter-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 17px;
}

/* ================= ABOUT INFRAESTATE SECTION ================= */
section.container.mt-5 {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

section.container.mt-5 h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

section.container.mt-5 h2 {
    font-size: 20px;
    margin-top: 25px;
    font-weight: 600;
    color: #222;
}

section.container.mt-5 p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

section.container.mt-5 ul {
    margin-top: 12px;
    padding-left: 18px;
}

section.container.mt-5 ul li {
    margin-bottom: 8px;
    list-style: disc;
}

/* FOOTER CLEAN */
.footer {
    background: #0b1c39;
    color: #fff;
    padding: 30px 0;
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    section.container.mt-5 {
        padding: 25px 20px;
    }

    section.container.mt-5 h1 {
        font-size: 22px;
    }
}
