body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.cities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.city-link {
    display: block;
    padding: 15px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.city-link:hover {
    background-color: #2980b9;
}

.region-tag {
    font-size: 0.8em;
    color: #95a5a6;
    margin-left: 5px;
}

.keywords-cloud {
    margin-top: 40px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 5px;
}

.keyword {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    background-color: #2ecc71;
    color: white;
    border-radius: 15px;
    font-size: 0.9em;
}

footer {
    margin-top: 40px;
    text-align: center;
    color: #7f8c8d;
}

/* City page specific styles */
.business-info {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.business-info h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.business-info h3 {
    color: #3498db;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.business-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.business-info p:last-child {
    border-bottom: none;
}

.business-info strong {
    color: #2c3e50;
    display: inline-block;
    width: 100px;
}

.business-info a {
    display: inline-block;
    background-color: #2ecc71;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.business-info a:hover {
    background-color: #27ae60;
}

.business-maps a {
    background-color: #e74c3c;
}

.business-maps a:hover {
    background-color: #c0392b;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background-color: #2980b9;
}

.service-info {
    background-color: #fff;
    border-radius: 8px;
    margin: 20px 0;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-info h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.service-info li {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-info li:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.featured-image {
    text-align: center;
    margin-bottom: 20px;
}

.featured-image img {
    max-width: 20%;
    height: auto;
}
