    /* Hero Section for this page */
    .page-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 20px 40px;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .page-hero p {
        font-size: 1.1rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Map Section */
    .map-section {
        padding: 60px 20px;
        background: #f8f9fa;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
        color: #2d3748;
        margin-bottom: 10px;
    }

    .section-header p {
        color: #718096;
        font-size: 1.1rem;
    }

    #map {
        height: 500px;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Table Section */
    .table-section {
        padding: 60px 20px 80px;
        background: white;
    }

    .table-container {
        max-width: 1200px;
        margin: 0 auto;
        overflow-x: auto;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

    thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    th {
        padding: 18px 15px;
        text-align: left;
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    td {
        padding: 15px;
        border-bottom: 1px solid #e2e8f0;
        color: #4a5568;
    }

    tbody tr {
        transition: background-color 0.2s;
    }

    tbody tr:hover {
        background-color: #f7fafc;
    }

    tbody tr:last-child td {
        border-bottom: none;
    }

    .city-name {
        font-weight: 600;
        color: #2d3748;
    }

    .price-cell {
        font-weight: 500;
        color: #667eea;
    }

    .view-link {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 20px;
        border: 2px solid #667eea;
        display: inline-block;
        transition: all 0.3s;
        font-size: 0.9rem;
    }

    .view-link:hover {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
    }

    /* Leaflet Popup Styling */
    .leaflet-popup-content {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        margin: 15px;
    }

    .leaflet-popup-content strong {
        color: #667eea;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 8px;
    }

    .leaflet-popup-content a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        margin-top: 8px;
    }

    .leaflet-popup-content a:hover {
        color: #764ba2;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .page-hero h1 {
            font-size: 1.8rem;
        }

        .page-hero p {
            font-size: 1rem;
        }

        #map {
            height: 400px;
        }

        .section-header h2 {
            font-size: 1.6rem;
        }

        th, td {
            padding: 12px 10px;
            font-size: 0.9rem;
        }

        th {
            font-size: 0.85rem;
        }

        .view-link {
            padding: 6px 12px;
            font-size: 0.85rem;
        }
    }

    /* Info Box */
    .info-box {
        background: #ebf4ff;
        border-left: 4px solid #667eea;
        padding: 20px;
        margin: 30px auto;
        max-width: 1200px;
        border-radius: 8px;
    }

    .info-box p {
        color: #2d3748;
        line-height: 1.7;
        margin: 0;
    }
