/* ============================================================
   Cash For Scrap Cars Ontario — location.css
   Shared styles for city/location landing pages
   (e.g. scrap-car-removal-brampton.php and future city pages)
   ============================================================ */

.location-page {
    background: var(--white);
}

.location-content {
    max-width: 780px;
}

.location-content > p:first-child {
    margin-top: 0;
}

.location-content h2 {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin: 36px 0 14px;
}

.location-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 18px;
}

.location-content ul {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-content ul li {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--grey);
    padding-left: 26px;
    position: relative;
}

.location-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* --- Neighborhood Pills --- */
.location-neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 24px;
}

.location-neighborhoods span {
    background: var(--bg);
    color: var(--blue-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
}

/* --- Local FAQ --- */
.location-faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.location-faq-item:first-child {
    padding-top: 0;
}

.location-faq-item h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 8px;
}

.location-faq-item p {
    font-size: 0.92rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}
