* {
    box-sizing: border-box;
}

html {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background: #f8fafc;
}

body {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    display: inline-block;
    padding: 18px 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.hero {
    padding: 64px 0;
    background: #ffffff;
}

.hero h1,
.page-header h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
}

.hero p,
.page-header p {
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.search-box input {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font: inherit;
}

.search-box button {
    padding: 14px 22px;
    border: 0;
    border-radius: 8px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.section {
    padding: 48px 0;
}

.section h2 {
    margin-top: 0;
}

.service-grid,
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-card,
.city-card,
.provider-card,
.empty-state {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.service-card,
.city-card {
    display: block;
    padding: 20px;
    font-weight: 600;
}

.service-card:hover,
.city-card:hover {
    border-color: #94a3b8;
}

.page-header {
    padding: 40px 0;
    background: #ffffff;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 0.9rem;
}

.result-list {
    display: grid;
    gap: 16px;
}

.provider-card {
    padding: 24px;
}

.provider-card h2 {
    margin-top: 0;
}

.price {
    margin-top: 16px;
    font-size: 1.25rem;
    font-weight: 700;
}

.empty-state {
    padding: 32px;
}

.empty-state h2 {
    margin-top: 0;
}

.site-footer {
    padding: 32px 0;
    border-top: 1px solid #e5e7eb;
    color: #64748b;
}

@media (max-width: 600px) {
    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }
}
