@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden; 
}

/* Image Fallback Rule (Mandatory) */
.image-placeholder {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.8rem;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.image-placeholder::after {
    content: "Verified Property Listing";
    position: absolute;
    bottom: 12px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom transitions */
.faq-item:hover h4 {
    color: #0056b3;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #0056b3; }