html, body {
        height: 100%;
        margin: 0;
    }
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    .main-content-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }
    .centered-content {
        width: 100%;
        max-width: 1200px; /* Можно настроить под ваш дизайн */
        padding: 0 15px;
    }
    .footer {
        flex-shrink: 0;
    }

    /* Стили для версии сайта */
    .site-version {
        position: fixed;
        bottom: 15px;
        right: 15px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        z-index: 1000;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    .site-version:hover {
        opacity: 1;
    }