    .custom-page-container {
        max-width: 1100px;
        margin: 40px auto 40px auto;
        padding: 48px 32px 40px 32px;
        position: relative;
    }

    .custom-page-breadcrumb {
        font-size: 15px;
        color: #718ebf;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .custom-page-breadcrumb a {
        color: #6e4c97;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

    .custom-page-breadcrumb a:hover {
        color: #bd92f1;
    }

    .custom-page-title {
        font-size: 2.3rem;
        color: #6e4c97;
        font-weight: bold;
        margin-bottom: 18px;
        text-align: center;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .custom-page-content {
        font-size: 1.13rem;
        color: #444;
        line-height: 1.85;
        margin-top: 10px;
        margin-bottom: 10px;
        word-break: break-word;
    }

    @media (max-width: 700px) {
        .custom-page-container {
            padding: 18px 6vw 18px 6vw;
            max-width: 98vw;
        }

        .custom-page-title {
            font-size: 1.4rem;
        }
    }