/* Legal Pages Styling - Plain and Clear */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.legal-nav {
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
}

.back-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

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

.legal-container {
    padding: 20px 0;
}

h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.effective-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.8rem;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000;
}

h3 {
    font-size: 1.3rem;
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

strong {
    font-weight: 700;
    color: #000;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-box {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-left: 4px solid #000;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
    text-align: left;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

@media print {
    body {
        max-width: 100%;
    }
    
    .legal-nav,
    .legal-footer {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
        font-size: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}
