/* Speakfy Legal Pages Styles */

:root {
    --primary-color: #896ff4;
    --text-color: #4b3d86;
    --bg-color: #ffffff;
    --bg-alt-color: #f8f9fa;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}

.legal-header {
    background: var(--bg-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}

.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-alt-color);
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-top: 25px;
    font-weight: 600;
}

p, ul {
    margin-bottom: 20px;
    font-size: 1.05rem;
    opacity: 0.9;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.highlight-box {
    border-left: 4px solid var(--primary-color);
    background: rgba(137, 111, 244, 0.05);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.disclaimer-critical {
    background-color: #fff3f3;
    border-left: 4px solid #ff4444;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.disclaimer-critical strong {
    color: #cc0000;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer {
    background: var(--text-color);
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #ffffff;
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}
