   

        .title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 3rem;
            font-weight: bold;
        }

        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            /* gap: 2rem; */
            justify-items: center;
        }

        .property-card {
            background: linear-gradient(180deg, rgb(231, 190, 90) 0%, rgb(255, 244, 202) 49%, rgb(227, 184, 79) 100%);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 25px;
            max-width: 380px;
            width: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .property-image {
            width: 100%;
            height:190px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .property-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #000000;
            text-align: center;
            margin-bottom: 0.1rem;
        }

        .property-location {
            color: #666;
            text-align: center;
            margin-bottom: 1rem;
            font-size:1.20rem;
        }

        .decorative-line {
            height: 1px;
            background: linear-gradient(90deg, transparent, #f59e0b, transparent);
            margin: 1rem 0;
        }

        .price-section {
            background: rgba(255, 255, 255, 0.6);
            text-align: center;
            padding: 0.75rem;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .price-text {
            color: #92400e;
            font-weight:600;
            font-size: 1rem;
        }

        .apartment-types {
            color: #374151;
            text-align: center;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 1rem;
        }

        .property-size {
            color: #6b7280;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .interested-btn {
            display: block;
            background: rgba(255, 255, 255, 0.6);
            color: #92400e;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            margin: 0 auto;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .interested-btn:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .property-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .property-card {
                max-width: 100%;
                padding: 20px;
            }
            
            .property-image {
                height:190px;
            }
            
            .title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            body {
                padding: 1rem 0.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .property-card {
                padding: 15px;
            }
            
            .property-image {
                height: 180px;
            }
            
            .property-title {
                font-size: 1.2rem;
            }
            
            .title {
                font-size: 1.8rem;
            }
        }

        @media screen and (min-width: 1200px) {
            .property-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }