:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --bg: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -100px;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    border-radius: var(--radius-lg);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-width: 500px;
    border: 1px solid var(--border);
}

.has-dropdown:hover .mega-menu {
    display: grid;
}

.mega-menu-column h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.mega-menu-column a {
    display: block;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 8px;
    padding: 6px 0;
    transition: var(--transition);
    border-radius: 4px;
    padding-left: 8px;
    border-left: 2px solid transparent;
}

.mega-menu-column a:hover {
    color: var(--primary);
    background: var(--bg);
    border-left-color: var(--primary);
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 20px;
    text-align: center;
}

.search-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.location-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.location-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.city-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.location-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.template-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.template-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.template-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.detail-hero {
    background: var(--bg);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-lighter);
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 500;
}

.error-hero {
    padding: 100px 20px;
    text-align: center;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.7;
}

.error-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Search Bars */
.searchbar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.searchbar:focus-within {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.searchbar input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
}

.searchbar input::placeholder {
    color: var(--text-light);
}

.searchbar button {
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.searchbar button:hover {
    background: var(--primary-dark);
}

.searchbar-large {
    max-width: 600px;
    margin: 30px auto 0;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.quick-links a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.quick-links a:hover {
    background: white;
    color: var(--primary);
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}

.card-content .location {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-content .address {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.rating .stars {
    color: #f59e0b;
}

.rating .rating-value {
    color: var(--text);
    font-weight: 600;
}

.rating .reviews {
    color: var(--text-light);
    font-size: 0.9rem;
}

.phone {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.city-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-image {
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.8;
}

.city-content {
    padding: 20px;
}

.city-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.city-content span {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.filters-form {
    display: block;
}

.filters-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-label {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.rating-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rating-btn {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.rating-btn:hover,
.rating-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 40px 0 30px;
}

.results-info h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text);
}

.result-count {
    color: var(--text-light);
    font-size: 1rem;
}

.filters {
    flex-shrink: 0;
}

.filters-form {
    display: flex;
    gap: 24px;
    align-items: flex-end;
}

.rating-filter {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Location Content */
.location-content {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.company-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.company-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.company-card:hover .company-image img {
    transform: scale(1.05);
}

.rating-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.rating-stars {
    color: #f59e0b;
}

.rating-value {
    color: var(--text);
}

.company-content {
    padding: 20px;
}

.company-name {
    font-size: 1.2rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.company-name a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.company-name a:hover {
    color: var(--primary);
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.detail-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.detail-text {
    color: var(--text);
    line-height: 1.5;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.company-actions {
    display: flex;
    gap: 10px;
}

.btn-primary, .btn-secondary {
    padding: 10px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 24px;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Company Detail */
.company-detail {
    padding: 40px 0;
}

.company-profile {
    max-width: 1000px;
    margin: 0 auto;
}

.profile-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.company-avatar {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.company-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text);
    line-height: 1.2;
}

.company-rating-large {
    margin-bottom: 30px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.rating-stars-large {
    font-size: 1.5rem;
    color: #f59e0b;
}

.rating-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.rating-value {
    font-size: 1.8rem;
    color: var(--text);
}

.rating-separator {
    color: var(--text-light);
}

.rating-max {
    color: var(--text-light);
}

.rating-meta {
    color: var(--text-light);
}

.profile-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-section,
.map-section,
.info-section {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.info-content p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Template Content */
.template-content {
    padding: 40px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.sidebar {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 8px;
}

.sidebar a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar a:hover,
.sidebar a.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
}

.content {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.content-header {
    margin-bottom: 30px;
    text-align: center;
}

.content-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.content-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Section Styles */
.popular, .cities {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.no-results-actions,
.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: white;
    border-top: 1px solid var(--border);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .mega-menu {
        position: static;
        display: none !important;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .searchbar {
        flex-direction: column;
    }

    .searchbar input,
    .searchbar button {
        width: 100%;
        border-radius: var(--radius);
    }

    .searchbar input {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .searchbar button {
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .results-header {
        flex-direction: column;
        gap: 20px;
    }

    .filters-form {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        min-width: auto;
    }

    .rating-filter {
        justify-content: center;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rating-filter-buttons {
        justify-content: center;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .company-avatar {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }

    .company-title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .company-actions,
    .profile-actions,
    .error-actions,
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        order: 2;
    }

    .content {
        order: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-hero {
        padding: 60px 0 40px;
    }

    .location-header h1 {
        font-size: 2.2rem;
    }

    .location-stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}


.intro-content {
    margin: 3rem auto;
    max-width: 1200px;
    line-height: 1.6;
}

.intro-content h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro-content h3 {
    color: #3498db;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.verzekeringen-lijst {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
}

.verzekeringen-lijst ul {
    flex: 1;
    min-width: 250px;
    list-style-type: none;
    padding-left: 0;
}

.verzekeringen-lijst li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.verzekeringen-lijst li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.intro-content a {
    color: #3498db;
    text-decoration: none;
}

.intro-content a:hover {
    text-decoration: underline;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .verzekeringen-lijst {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .intro-content h3 {
        font-size: 1.25rem;
    }
}

/* Subpage Hero */
.hero-subpage {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-subpage h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subpage p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.content-main {
    max-width: 800px;
    margin: 0 auto;
}

.verzekering-detail {
    line-height: 1.7;
}

.verzekering-detail h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.verzekering-detail h3 {
    color: #3498db;
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
}

.verzekering-detail p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h3 {
    color: #2c3e50;
    margin-top: 0;
}

/* External Links */
.external-links {
    background: #e8f4fc;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.external-links strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 1rem;
}

.external-links ul {
    list-style: none;
    padding-left: 0;
}

.external-links li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.external-links li:before {
    content: "🔗";
    position: absolute;
    left: 0;
}

.external-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.external-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-subpage {
        padding: 3rem 0;
    }

    .hero-subpage h1 {
        font-size: 2rem;
    }

    .page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .info-box,
    .external-links {
        padding: 1.5rem;
    }

    .verzekering-detail h2 {
        font-size: 1.75rem;
    }

    .verzekering-detail h3 {
        font-size: 1.35rem;
    }
}