/* Location pages */
.loc-intro {
    text-align: center;
    padding: 16px 10px 8px;
}
.loc-intro h1 {
    font-size: 1.4em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}
.loc-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}
.loc-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 10px 16px;
}
.loc-stat {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    min-width: 140px;
    flex: 1;
}
.loc-stat-value {
    font-size: 20px;
    font-weight: bold;
    color: #6498fe;
}
.loc-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.loc-content {
    padding: 20px 10px;
    line-height: 1.7;
    color: #444;
    font-size: 15px;
}
.loc-content h2 {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px 0 8px;
}
.loc-content h3 {
    font-size: 1.05em;
    font-weight: bold;
    color: #333;
    margin: 16px 0 6px;
}
.loc-content p {
    margin: 0 0 12px;
}
.loc-content ul {
    margin: 0 0 12px;
    padding-left: 24px;
}
.loc-content li {
    margin-bottom: 4px;
}
.loc-links {
    padding: 16px 10px;
}
.loc-links h2 {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}
.loc-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.loc-links-grid a {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f4ff;
    border-radius: 5px;
    font-size: 13px;
    color: #6498fe;
    text-decoration: none;
    transition: background 0.2s;
}
.loc-links-grid a:hover {
    background: #dde6ff;
}
