/* Shared styles for peripheral pages (accessibility, privacy, terms) */
body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #1f2937;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

.accessibility-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #6b21a8;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    color: #1f2937;
    margin-top: 30px;
    font-size: 1.2rem;
}

section {
    margin-bottom: 25px;
}

ul {
    margin: 10px 0;
    padding-right: 20px;
}

li {
    margin-bottom: 5px;
}

.notice {
    font-weight: bold;
    color: #b45309;
    border: 2px solid #b45309;
    padding: 15px;
    background: #fef3c7;
    margin: 20px 0;
    border-radius: 4px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #6b21a8;
    text-decoration: none;
    font-weight: 500;
}

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

.back-link:focus {
    outline: 2px solid #6b21a8;
    outline-offset: 2px;
}

/* Focus rings for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid #6b21a8;
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .accessibility-page {
        margin: 20px;
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.1rem;
    }
}