/* Accessibility improvements */
body {
    line-height: 1.6;
    font-size: 1.2rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Focus styles for keyboard navigation */
:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

.prose ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cookie-text {
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #3b82f6;
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background-color: #2563eb;
}

.cookie-btn.reject {
    background-color: white;
    color: #3b82f6;
    border: 1px solid #e5e7eb;
}

.cookie-btn.reject:hover {
    background-color: #f9fafb;
}

.cookie-link {
    color: #3b82f6;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #2563eb;
}

/* Print styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .no-print {
        display: none;
    }
    
    #cookie-banner {
        display: none;
    }
}
