/* ============================================= */
/* == Small Claims Court Page Specific Styles == */
/* ============================================= */

:root {
    --scc-primary: #1a365d;
    --scc-secondary: #2d5a87;
    --scc-accent: #3182ce;
    --scc-light: #e6f3ff;
    --scc-dark: #0f2a44;
    --scc-gold: #d69e2e;
    --scc-success: #38a169;
    --scc-warning: #d69e2e;
    --scc-danger: #e53e3e;
    --scc-glass: rgba(255, 255, 255, 0.1);
    --scc-glass-border: rgba(255, 255, 255, 0.2);
    --scc-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --scc-primary-color: #0056b3; /* Slightly different blue */
    --scc-secondary-color: #e0ac00; /* Slightly different gold */
    --scc-light-bg: #f9f9f9;
    --scc-text-color: #343a40;
    --glass-bg-light: rgba(255, 255, 255, 0.65);
    --glass-bg-dark: rgba(40, 40, 60, 0.55);
    --glass-blur: 8px; /* Slightly less blur */
    --glass-border-color: rgba(255, 255, 255, 0.25);
    --card-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    --card-border-radius: 10px;
}

/* Navigation Tabs */
.scc-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--scc-glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.content-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 50px;
    color: var(--scc-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-item:hover,
.nav-item.active {
    background: var(--scc-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--scc-shadow);
}

.nav-item i {
    font-size: 1rem;
}

/* Main Content */
.scc-content {
    background: linear-gradient(135deg, var(--scc-light) 0%, rgba(255, 255, 255, 0.9) 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

/* --- General Page Structure --- */
.small-claims-content .container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.small-claims-content .content-section {
    margin-bottom: 45px;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--card-border-radius);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.content-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--scc-glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--scc-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    color: var(--scc-primary);
    margin-bottom: 1rem;
}

.section-header h2 i {
    color: var(--scc-accent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--scc-secondary);
    font-weight: 300;
}

.small-claims-content .content-section:hover {
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Glass Effects for specific sections */
.small-claims-content .glass-effect,
.small-claims-content .glass-effect-light {
    border: 1px solid var(--glass-border-color);
    box-shadow: var(--card-shadow);
    position: relative; /* Needed for potential pseudo-elements */
}

.small-claims-content .glass-effect {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.small-claims-content .glass-effect-light {
    background: rgba(255, 255, 255, 0.75); /* Lighter base for light effect */
    backdrop-filter: blur(calc(var(--glass-blur) / 2)); /* Less blur */
    -webkit-backdrop-filter: blur(calc(var(--glass-blur) / 2));
}


/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--scc-shadow);
}

.overview-card.primary-card {
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-secondary));
    color: white;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--scc-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--scc-accent);
}

.primary-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--scc-primary);
}

.primary-card h3 {
    color: white;
}

.overview-card p {
    line-height: 1.6;
    color: #4a5568;
}

.primary-card p {
    color: rgba(255, 255, 255, 0.9);
}

.small-claims-content h2 {
    color: var(--scc-primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--scc-secondary-color);
    display: inline-flex; /* Use flex to align icon and text */
    align-items: center;
    gap: 10px; /* Space between icon and text */
    font-size: 1.8em;
}

.small-claims-content h2 i {
    font-size: 0.9em; /* Slightly smaller icon */
    color: var(--scc-secondary-color);
}


.small-claims-content h3 {
    color: var(--scc-primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4em;
}

.small-claims-content p,
.small-claims-content li {
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--scc-text-color);
}

.small-claims-content ul,
.small-claims-content ol {
    padding-left: 25px;
}

.small-claims-content strong {
    font-weight: 600;
    color: #495057;
}

.small-claims-content a {
    color: var(--scc-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.small-claims-content a:hover {
    color: var(--scc-secondary-color);
    text-decoration: underline;
}

/* --- Hero Section --- */
.small-claims-hero {
    background: url('../images/legal.jpg') no-repeat center center/cover; /* Relevant background */
    position: relative;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.small-claims-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 30, 70, 0.65); /* Slightly different overlay */
    z-index: 1;
}

.small-claims-hero.glass-effect-dark::before {
    background-color: var(--glass-bg-dark);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.small-claims-hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background: #003366;
    color: white;
    border: 2px solid #003366;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: #003366;
    color: white;
    border: 2px solid #003366;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.small-claims-hero h1 {
    font-size: 2.6em;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 100%;
}

.small-claims-hero .subtitle {
    font-size: 1.15em;
    font-weight: 400;
    opacity: 0.95;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

/* --- Specific Section Styling --- */

/* Definitions Grid */
.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* SVG icon styling for definitions section */
.definition-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.definition-icon use {
    pointer-events: none;
}

.definition-card {
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.definition-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--scc-shadow);
}

.definition-term {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.definition-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 12px;
}

.definition-card:hover .definition-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.definition-term h3 {
    color: var(--scc-primary);
    font-size: 1.3rem;
    margin: 0;
}

.definition-card p {
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Definitions List */
.definitions-list {
    list-style: none;
    padding-left: 0;
}
.definitions-list li {
    padding: 10px;
    border-bottom: 1px dashed #eee;
}
.definitions-list li:last-child {
    border-bottom: none;
}

/* Filing Process */
.filing-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--scc-shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--scc-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-content p {
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
}

.step-tip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--scc-success);
    font-size: 0.9rem;
}

.step-tip i {
    color: var(--scc-success);
}

/* Jurisdiction Grid */
.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.jurisdiction-card {
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.jurisdiction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--scc-shadow);
}

.jurisdiction-card.permitted {
    border-left: 4px solid var(--scc-success);
}

.jurisdiction-card.excluded {
    border-left: 4px solid var(--scc-danger);
}

.card-header {
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-secondary));
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: white;
}

.card-content {
    padding: 2rem;
}

.limit-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(56, 161, 105, 0.1);
    border-radius: 10px;
}

.limit-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--scc-success);
}

.limit-description {
    color: #4a5568;
    font-size: 0.9rem;
}

.claims-list,
.exclusions-list {
    list-style: none;
    padding: 0;
}

.claims-list li,
.exclusions-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #4a5568;
}

.claims-list li:last-child,
.exclusions-list li:last-child {
    border-bottom: none;
}

.claims-list i {
    color: var(--scc-success);
    width: 20px;
}

.exclusion-note {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.jurisdiction-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Slight background for contrast within glass */
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.jurisdiction-item.excluded {
    background-color: rgba(255, 235, 238, 0.8); /* Light red background for excluded */
    border-color: rgba(220, 53, 69, 0.2);
}
.jurisdiction-item.excluded h3 {
    color: #dc3545; /* Red heading */
}
.jurisdiction-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* Filing Section - Steps List */
.filing-section .steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: steps-counter;
}
.filing-section .steps-list li {
    position: relative;
    padding-left: 50px; /* More space for number */
    margin-bottom: 20px;
    font-size: 1.05em;
}
.filing-section .steps-list li .step-number {
    counter-increment: steps-counter;
    position: absolute;
    left: 0;
    top: -2px; /* Align better vertically */
    width: 35px;
    height: 35px;
    background-color: var(--scc-secondary-color);
    color: var(--scc-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.filing-section .steps-list li strong {
    display: block; /* Make title stand out */
    margin-bottom: 3px;
    color: var(--scc-primary-color);
}

/* Additional Info Link */
.additional-info-section .act-link {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--scc-light-bg);
    border-left: 4px solid var(--scc-secondary-color);
    border-radius: 4px;
    font-style: italic;
}

/* Procedures Grid */
.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.procedure-card {
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--scc-shadow);
}

.procedure-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.procedure-card h3 {
    color: var(--scc-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.procedure-card p {
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--scc-glass);
    border: 1px solid var(--scc-glass-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--scc-shadow);
}

.contact-card.primary {
    background: linear-gradient(135deg, var(--scc-primary), var(--scc-secondary));
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--scc-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--scc-accent);
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card h3 {
    color: var(--scc-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.contact-card.primary h3 {
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--scc-accent);
    margin-top: 0.25rem;
    width: 20px;
}

.contact-card.primary .contact-item i {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--scc-primary);
}

.contact-card.primary .contact-item strong {
    color: white;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
    color: #4a5568;
}

.contact-card.primary .contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Legal Reference */
.legal-reference {
    margin-top: 3rem;
}

.reference-card {
    background: linear-gradient(135deg, var(--scc-gold), #f6ad55);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--scc-shadow);
}

.reference-card i {
    font-size: 2rem;
    opacity: 0.8;
}

.reference-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.reference-content p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.contact-grid h3 {
    font-size: 1.3em;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .small-claims-hero {
        min-height: 85vh;
        padding: 60px 15px;
    }
    .small-claims-hero .container {
        padding: 0 1.5rem;
    }
    .small-claims-hero h1 {
        font-size: 2.3em;
        text-align: center;
    }
    .small-claims-hero .subtitle {
        font-size: 1.1em;
        text-align: center;
    }
    .small-claims-content h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .small-claims-hero {
        padding: 50px 15px;
        min-height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .small-claims-hero .container {
        padding: 0 1rem;
        align-items: center;
        text-align: center;
    }
    .small-claims-hero h1 {
        font-size: 2em;
        text-align: center;
        margin-bottom: 1rem;
    }
    .small-claims-hero .subtitle {
        font-size: 1em;
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    .small-claims-content .content-section {
        padding: 20px;
        margin-bottom: 35px;
    }
    .small-claims-content h2 {
        font-size: 1.5em;
    }
    .jurisdiction-grid,
    .contact-grid {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        gap: 20px;
    }
    .filing-section .steps-list li {
        padding-left: 45px;
    }
    .filing-section .steps-list li .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .small-claims-hero {
        min-height: 70vh;
        padding: 40px 10px;
    }
    .small-claims-hero .container {
        padding: 0 0.75rem;
    }
    .small-claims-hero h1 {
        font-size: 1.8em;
        text-align: center;
        line-height: 1.2;
    }
    .small-claims-hero .subtitle {
        font-size: 0.95em;
        text-align: center;
        line-height: 1.4;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    .small-claims-content h2 {
        font-size: 1.4em;
    }
    .small-claims-content h3 {
        font-size: 1.2em;
    }
}