/* State requirements page specific styles */
.state-selector {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.state-selector h2 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 20px;
}

.state-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.state-button {
    background-color: #f3f4f6;
    padding: 10px 15px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    color: #1f2937;
    font-size: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.state-button:hover, .state-button.active {
    background-color: #2563eb;
    color: white;
}

/* State info styles */
.state-info-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 300px;
    margin-bottom: 30px;
}

.state-info {
    display: none;
}

.state-info.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.state-info h2 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.requirement-box {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
}

.requirement-box h3 {
    color: #1e40af;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Federal Notice Box */
.federal-notice {
    background-color: #eff6ff;
    border: 1px solid #93c5fd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
}

/* CTA styles */
.cta-container {
    background-color: #1e40af;
    color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-container h2 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ef4444;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .state-button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .cta-container {
        padding: 20px;
    }
    
    .cta-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .state-list {
        gap: 6px;
    }
    
    .state-button {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}