.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.state-hero {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    margin-bottom: 24px;
}

.state-hero h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.state-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.state-calculator {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.state-info {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.state-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.state-info h4 {
    font-size: 1rem;
    margin: 20px 0 12px;
    color: var(--primary);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}

.tariff-table th,
.tariff-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.tariff-table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.tariff-table td:first-child {
    color: var(--text);
}

.tariff-table td:last-child {
    font-weight: 600;
    color: var(--secondary);
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.board-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.info-card {
    background: var(--bg);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.info-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.how-to-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.how-to-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-section {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 16px;
    border: 1px solid var(--secondary);
    margin-bottom: 24px;
}

.cta-section h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.cta-section p {
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .state-hero {
        padding: 24px 16px;
    }
    
    .state-hero h2 {
        font-size: 1.2rem;
    }
    
    .board-cards {
        grid-template-columns: 1fr;
    }
}
