
.document-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.document-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.document-date {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}


.document-content {
    padding: 4rem 0;
    background-color: var(--background);
}

.document-section {
    background-color: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.document-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.document-section h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.document-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.document-section a {
    color: var(--primary);
    text-decoration: underline;
}

.document-section a:hover {
    color: var(--primary-dark);
}

.document-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.document-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.document-section ul li strong {
    color: var(--primary);
}

.document-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.back-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background-color: var(--primary-dark);
}


@media (max-width: 768px) {
    .document-header h1 {
        font-size: 2rem;
    }
    
    .document-content {
        padding: 2rem 0;
    }
    
    .document-section {
        padding: 1.5rem;
    }
    
    .document-section h2 {
        font-size: 1.5rem;
    }
    
    .document-section h3 {
        font-size: 1.2rem;
    }
}
