.page_container {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
    margin: 20px auto;
    color: #333;
    line-height: 1.6;
}


.document-header {
    margin-bottom: 30px;
}

.main-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 20px;
}

.back-to-docs-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #5488ef;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.back-to-docs-button:hover {
    color: #2a5db0;
    transform: translateX(-5px);
}

.arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    margin: 30px 0;
}

.page_container h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid #5488ef;
    padding-left: 15px;
}

/* Основной текст */
.page_container p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.05rem;
    color: #444;
}

@media (max-width: 768px) {
    .page_container {
        padding: 20px;
        width: 95%;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .page_container h2 {
        font-size: 1.2rem;
    }

    .page_container p {
        font-size: 1rem;
        text-align: left;
    }
}
