       /* Main Page */
        .page {
            display: none;
            padding: 40px 20px;
            animation: fadeIn 0.5s ease-in;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quickFindCards {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 20px;
        }

        .quickCards {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .quickCards:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .quickCards img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .quickCards h2 {
            padding: 20px;
            text-align: center;
            color: #333;
            font-size: 1.5rem;
        }

        .quickCards button {
            width: 90%;
            margin: 0 5% 20px 5%;
            padding: 12px;
            background: black;
            color: #d4af37;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .quickCards button:hover {
            background: #000000c7;
        }
      /* Detail Page */
        .detail-page {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .back-button {
            background: #666;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            margin-bottom: 30px;
            transition: background 0.3s ease;
        }

        .back-button:hover {
            background: #555;
        }

        .detail-page h1 {
            color: #333;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .detail-page img {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .property-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .info-card {
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
        }

        .info-card h3 {
            color: #e2e61dde;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .info-card p {
            color: #666;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .description {
            line-height: 1.8;
            color: #555;
            margin: 20px 0;
            font-size: 1.1rem;
        }

        .features {
            margin-top: 30px;
        }

        .features h2 {
            color: #333;
            margin-bottom: 15px;
        }

        .features ul {
            list-style: none;
            padding: 0;
        }

        .features li {
            padding: 10px 0;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .features li:before {
            content: "✓ ";
            color: #e7e413d2;
            font-weight: bold;
            margin-right: 10px;
        }

         /* Page Management */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }
               /* Detail Page Styles */
        .detail-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .back-button {
            background: #666;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            margin-bottom: 30px;
            transition: background 0.3s ease;
        }

        .back-button:hover {
            background: #555;
        }

        /* .logo {
            text-align: center;
            margin-bottom: 30px;
        } */

        /* .logo img {
            max-width: 500px;
            width: 100%;
            height: auto;
        } */

        table {
            width: 100%;
            background: white;
            border-collapse: collapse;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        table tr:first-child {
            background: black;
            color: #d4af37;
            font-weight: bold;
        }

        table td {
            padding: 15px;
            text-align: left;
            border: 1px solid #ddd;
        }

        table tr:not(:first-child):hover {
            background-color: #f9f9f9;
        }

        table button {
            background: #d4af37;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
        }

        table button:hover {
            background: #d4af37;
        }

        table a {
            text-decoration: none;
        }