/* info-pages.css */
.info-page {
    max-width: 800px; margin: 0 auto;
    padding: 5rem 2rem 6rem;
}
.about-container, .privacity-container, .cookies-container {
    max-width: 800px; margin: 0 auto;
    padding: 4rem 2rem 6rem;
}
.about-header, .page-header {
    margin-bottom: 3rem; text-align: center;
}
.about-header h1, .page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text); margin: 0 0 0.75rem;
}
.about-header p, .page-header p {
    font-size: 1rem; color: var(--text-muted);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.about-content article, .info-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.about-content article:last-child, .info-section:last-child {
    border-bottom: none; padding-bottom: 0;
}
.about-content h2, .info-section h2 {
    font-size: 1.25rem; font-weight: 600;
    color: var(--purple); margin-bottom: 0.75rem;
}
.about-content p, .info-section p {
    font-size: 0.95rem; color: var(--text-muted);
    line-height: 1.85; margin: 0 0 0.75rem;
}
.about-content ul, .info-section ul {
    list-style: none; padding: 0; margin: 0.5rem 0;
}
.about-content ul li, .info-section ul li {
    font-size: 0.93rem; color: var(--text-muted);
    padding: 6px 0 6px 1.4rem; position: relative; line-height: 1.65;
}
.about-content ul li::before, .info-section ul li::before {
    content: '◆'; position: absolute; left: 0;
    color: var(--purple); font-size: 0.5rem; top: 10px; opacity: 0.7;
}
@media (max-width: 600px) {
    .about-container, .privacity-container, .cookies-container { padding: 3rem 1.25rem 4rem; }
}
