/* General Reset */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
    padding: 20px;
}

/* Page Titles */
.city-header {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
    margin-bottom: 0;
}

/* The Thick Professional Divider */
.thick-divider {
    border: none;
    height: 2px;
    background-color: #000;
    margin: 10px 0 25px 0;
    width: 100%;
}

/* The List (No more blue links) */
.category-list {
    list-style: none; /* We will build custom bullets */
    padding: 0;
    margin: 0;
}

.category-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
}

/* Custom Square Bullets */
.category-list li::before {
    content: "■"; /* High-end square bullet */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: #000;
}

/* The Links */
.category-list a {
    text-decoration: none;
    color: #000; /* Sophisticated black */
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s;
}

.category-list a:hover {
    color: #666; /* Subtle grey on hover */
}