.proc-page {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 20px;
}

.nav-links .nav-current {
    color: #0c5f94;
    font-weight: 700;
}

.proc-hero {
    background: linear-gradient(135deg, #0c5f94 0%, #0a4a75 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 28px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(12, 95, 148, 0.18);
}

.proc-hero h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 14px;
    font-weight: 750;
}

.proc-hero p {
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.65;
    opacity: 0.96;
}

.proc-search-form {
    display: flex;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.proc-search-form .search-input {
    min-width: 0;
    padding: 15px 18px;
    border: 2px solid transparent;
}

.proc-search-form .search-input:focus {
    border-color: #93c5fd;
}

.proc-search-form .search-btn {
    padding: 15px 25px;
    background: #e63946;
    white-space: nowrap;
}

.proc-search-form .search-btn:hover {
    background: #c1121f;
}

.proc-search-form .autocomplete-dropdown {
    right: 150px;
    top: calc(100% - 1px);
    color: #2d3748;
    text-align: left;
}

.proc-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.stat-pill {
    background: white;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 9px 18px;
    color: #0c5f94;
    font-size: 0.9rem;
    font-weight: 650;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

.proc-section {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 30px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

.proc-section h2 {
    color: #0c5f94;
    font-size: 1.55rem;
    line-height: 1.3;
    margin: 0 0 18px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.proc-section .city-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 12px 14px;
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    color: #0c5f94;
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.proc-section .city-card:hover {
    background: #0c5f94;
    color: white;
    transform: translateY(-2px);
}

.city-count {
    flex-shrink: 0;
    font-size: 0.76rem;
    font-weight: 450;
    opacity: 0.78;
}

.guide-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.guide-link-card {
    padding: 17px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0c5f94;
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.guide-link-card:hover {
    background: #0c5f94;
    color: white;
    transform: translateY(-2px);
}

.guide-link-desc {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
}

.guide-link-card:hover .guide-link-desc {
    color: rgba(255, 255, 255, 0.84);
}

.state-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.state-pill {
    padding: 7px 16px;
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    color: #0c5f94;
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
}

.state-pill:hover {
    background: #0c5f94;
    color: white;
}

.table-scroll {
    overflow-x: auto;
    margin-top: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.cost-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cost-table th {
    padding: 11px 14px;
    background: #0c5f94;
    color: white;
    text-align: left;
}

.cost-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #e2e8f0;
}

.cost-table tr:last-child td {
    border-bottom: 0;
}

.cost-table tr:nth-child(even) td {
    background: #f8fafc;
}

.faq-list {
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-list .faq-item {
    margin: 0;
    padding: 20px 24px;
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
}

.faq-list .faq-item:last-child {
    border-bottom: 0;
}

.faq-q {
    margin: 0 0 10px;
    color: #0c5f94;
    font-size: 1.08rem;
    font-weight: 700;
}

.faq-list .faq-item > p:last-child {
    margin: 0;
    padding-left: 12px;
    border-left: 3px solid #bcd4e6;
    line-height: 1.65;
}

.proc-results:empty {
    display: none;
}

.proc-results:not(:empty) {
    margin-bottom: 30px;
}

.proc-results .provider-grid {
    margin-top: 22px;
}

@media (max-width: 720px) {
    .proc-page {
        padding: 24px 14px;
    }

    .proc-hero {
        padding: 40px 20px;
        border-radius: 12px;
    }

    .proc-search-form {
        flex-direction: column;
    }

    .proc-search-form .search-btn {
        width: 100%;
    }

    .proc-search-form .autocomplete-dropdown {
        left: 0;
        right: 0;
        top: 50px;
    }

    .proc-section {
        padding: 26px 20px;
        border-radius: 12px;
    }

    .city-grid,
    .guide-links {
        grid-template-columns: 1fr;
    }
}
