/* Legal Documents Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #667eea;
}

h1 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 5px;
}

.date {
    color: #718096;
    font-style: italic;
}

main {
    margin-bottom: 40px;
}

section {
    margin-bottom: 40px;
}

section.highlight {
    background: #f0f4ff;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

h2 {
    font-size: 1.8em;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

h3 {
    font-size: 1.3em;
    color: #4a5568;
    margin: 20px 0 15px 0;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 10px;
}

strong {
    color: #2d3748;
    font-weight: 600;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #764ba2;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    color: #718096;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    margin: 0 10px;
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        padding: 20px;
    }
    
    footer a {
        color: #333;
        text-decoration: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 30px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    ul {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 20px;
    }
    
    h1 {
        font-size: 1.6em;
    }
    
    footer a {
        display: block;
        margin: 5px 0;
    }
}
