body {
    font-family: 'Fira Mono', monospace, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.document-name {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #6c63ff;
}

.logo {
    display: block;
    margin: 20px auto;
    max-width: 150px;
    height: auto;
}

h1 {
    color: #404040;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #6c63ff;
    padding-bottom: 10px;
}

h2 {
    color: #555;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
}

a {
    color: #6c63ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

.contact-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
        margin: 10px 0;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        padding: 20px;
    }
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

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

.copyright {
    margin-bottom: 10px;
}

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

.footer-links a {
    color: #6c63ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5a52d5;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-links {
    gap: 15px;
    }
    
    .footer {
    font-size: 12px;
    }
    
}

@media (max-width: 480px) {
    .footer-links {
    flex-direction: column;
    gap: 10px;
    }
    
    .footer {
    padding: 15px 0;
    }
    
}
