
                .regbox {
                    background: #f8f6fa;
                    border: 1px solid #e0d4e8;
                    border-radius: 12px;
                    padding: 20px 24px;
                    margin: 30px 0;
                    text-align: center;
                }
                .regbox__intro {
                    font-size: 14px;
                    color: #555;
                    margin-bottom: 16px;
                    line-height: 1.5;
                }
                .regbox__logos {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 24px;
                    flex-wrap: wrap;
                }
                .regbox__link {
                    display: inline-flex;
                    align-items: center;
                    opacity: 0.85;
                    transition: opacity 0.2s;
                }
                .regbox__link:hover {
                    opacity: 1;
                }
                .regbox__link img {
                    height: 40px;
                    width: auto;
                    object-fit: contain;
                }
                @media (max-width: 480px) {
                    .regbox__logos { gap: 16px; }
                    .regbox__link img { height: 32px; }
                }
                .author-box {
                    display: flex;
                    align-items: flex-start;
                    gap: 20px;
                    background-color: #f5f5f5;
                    padding: 24px;
                    border-radius: 10px;
                    color: #333;
                    flex-wrap: wrap;
                    margin: 32px 0 24px;
                }
                .author-header {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 30px;
                    flex-wrap: wrap;
                }
                .author-avatar img {
                    width: 110px !important;
                    height: 110px !important;
                    border-radius: 50%;
                    border: 4px solid #9C2780;
                    object-fit: cover;
                }
                .author-info {
                    flex: 1;
                    min-width: 200px;
                }
                .author-name {
                    display: inline-block;
                    color: #9C2780;
                    font-size: 22px;
                    font-weight: 700;
                    margin: 0 0 4px 0;
                    text-decoration: none;
                }
                .author-name:hover {
                    text-decoration: underline;
                }
                .author-title {
                    font-size: 16px;
                    color: #555;
                    margin: 0 0 12px 0;
                }
                .author-social {
                    display: inline-block;
                    margin-bottom: 0;
                    text-decoration: none;
                }
                .author-social svg {
                    vertical-align: middle;
                    border-radius: 50%;
                }
                .author-description {
                    flex: 1 1 100%;
                    font-size: 15px;
                    line-height: 1.6;
                    color: #444;
                    margin: 0;
                }
                #faq-block {
                    background: #fff;
                    border-radius: 18px;
                    margin-top: 30px;
                    padding: 20px;
                    margin-left: auto;
                    margin-right: auto;
                    box-shadow: 0 4px 24px rgba(106, 50, 127, 0.08);
                    border: 1px solid rgba(106, 50, 127, 0.1);
                }
                #faq-block > h2 {
                    margin-top: 0;
                    color: #6A327F;
                }
                .faq-item {
                    margin: 18px 0;
                    border-bottom: 1px solid #eee;
                    padding-bottom: 12px;
                }
                .faq-item:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                    padding-bottom: 0;
                }
                .faq-question {
                    font-weight: 600;
                    color: #6A327F;
                    cursor: pointer;
                    margin-bottom: 6px;
                }
                .faq-question h3 {
                    font-size: 1.05rem;
                    margin: 0;
                    font-weight: 600;
                }
                .faq-answer {
                    color: #222;
                    display: none;
                    margin-left: 0;
                    margin-bottom: 0;
                }
                .faq-answer p {
                    margin-bottom: 10px;
                }
                .faq-answer p:last-child {
                    margin-bottom: 0;
                }
                .faq-item.open .faq-answer {
                    display: block;
                    animation: faqFadeIn 0.3s;
                }
                .faq-item.open .faq-question {
                    color: #532466;
                }
                @keyframes faqFadeIn {
                    from {
                        opacity: 0;
                        transform: translateY(-10px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
            