
    .page-c-c-c-b-ng {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a2e;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-c-c-c-b-ng img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

    .page-c-c-c-b-ng__hero-section {
        position: relative;
        padding: 10px 20px 60px;
        background-color: #0d0d1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .page-c-c-c-b-ng__hero-image-wrapper {
        width: 100%;
        max-width: 1200px;
        margin: 20px auto 0;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-c-c-c-b-ng__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .page-c-c-c-b-ng__hero-content {
        max-width: 900px;
        margin: 0 auto;
        z-index: 1;
    }

    .page-c-c-c-b-ng__hero-title {
        font-size: 2.8em;
        color: #e7b10a;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        line-height: 1.2;
    }

    .page-c-c-c-b-ng__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        color: #cccccc;
    }

    .page-c-c-c-b-ng__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-c-c-c-b-ng__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none;
        cursor: pointer;
    }

    .page-c-c-c-b-ng__hero-button--primary {
        background-color: #e7b10a;
        color: #1a1a2e;
    }

    .page-c-c-c-b-ng__hero-button--primary:hover {
        background-color: #ffc107;
        transform: translateY(-3px);
    }

    .page-c-c-c-b-ng__hero-button--secondary {
        background-color: transparent;
        color: #e7b10a;
        border: 2px solid #e7b10a;
    }

    .page-c-c-c-b-ng__hero-button--secondary:hover {
        background-color: #e7b10a;
        color: #1a1a2e;
        transform: translateY(-3px);
    }

    .page-c-c-c-b-ng__features-section,
    .page-c-c-c-b-ng__guide-section,
    .page-c-c-c-b-ng__promotion-section,
    .page-c-c-c-b-ng__faq-section,
    .page-c-c-c-b-ng__cta-section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-c-c-c-b-ng__features-section {
        background-color: #2a2a4a;
    }

    .page-c-c-c-b-ng__features-title,
    .page-c-c-c-b-ng__guide-title,
    .page-c-c-c-b-ng__promotion-title,
    .page-c-c-c-b-ng__faq-main-title,
    .page-c-c-c-b-ng__cta-title {
        font-size: 2.2em;
        color: #e7b10a;
        margin-bottom: 40px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-c-c-c-b-ng__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-c-c-c-b-ng__feature-item {
        background-color: #1a1a2e;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .page-c-c-c-b-ng__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-c-c-c-b-ng__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-c-c-c-b-ng__feature-heading {
        font-size: 1.5em;
        color: #e7b10a;
        margin-bottom: 15px;
    }

    .page-c-c-c-b-ng__feature-description {
        font-size: 1em;
        color: #cccccc;
    }

    .page-c-c-c-b-ng__guide-section {
        background-color: #1a1a2e;
    }

    .page-c-c-c-b-ng__guide-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .page-c-c-c-b-ng__guide-step-item {
        background-color: #2a2a4a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        position: relative;
        box-sizing: border-box;
    }

    .page-c-c-c-b-ng__guide-step-number {
        position: absolute;
        top: -20px;
        left: 20px;
        background-color: #e7b10a;
        color: #1a1a2e;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-c-c-c-b-ng__guide-step-heading {
        font-size: 1.4em;
        color: #e7b10a;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-c-c-c-b-ng__guide-step-description {
        font-size: 0.95em;
        color: #cccccc;
    }

    .page-c-c-c-b-ng__promotion-section {
        background-color: #0d0d1a;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-c-c-c-b-ng__promotion-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        max-width: 1000px;
        margin-top: 30px;
    }

    .page-c-c-c-b-ng__promotion-image {
        flex: 1;
        min-width: 300px;
        border-radius: 10px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }

    .page-c-c-c-b-ng__promotion-text {
        flex: 2;
        text-align: left;
        color: #cccccc;
    }

    .page-c-c-c-b-ng__promotion-text p {
        margin-bottom: 20px;
        font-size: 1.05em;
    }

    .page-c-c-c-b-ng__promotion-button {
        background-color: #e7b10a;
        color: #1a1a2e;
        padding: 15px 30px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none;
        cursor: pointer;
    }

    .page-c-c-c-b-ng__promotion-button:hover {
        background-color: #ffc107;
        transform: translateY(-3px);
    }

    .page-c-c-c-b-ng__faq-section {
        background-color: #2a2a4a;
    }

    .page-c-c-c-b-ng__faq-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .page-c-c-c-b-ng__faq-item {
        background-color: #1a1a2e;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-c-c-c-b-ng__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #1a1a2e;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-c-c-c-b-ng__faq-question:hover {
        background-color: #3e3e5e;
    }

    .page-c-c-c-b-ng__faq-question-text {
        font-size: 1.2em;
        color: #e7b10a;
        margin: 0;
        pointer-events: none;
    }

    .page-c-c-c-b-ng__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #e7b10a;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .page-c-c-c-b-ng__faq-item.active .page-c-c-c-b-ng__faq-toggle {
        transform: rotate(45deg);
    }

    .page-c-c-c-b-ng__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-c-c-c-b-ng__faq-item.active .page-c-c-c-b-ng__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-c-c-c-b-ng__faq-answer p {
        margin: 0;
    }

    .page-c-c-c-b-ng__cta-section {
        background-color: #0d0d1a;
        padding: 80px 20px;
    }

    .page-c-c-c-b-ng__cta-description {
        font-size: 1.1em;
        color: #cccccc;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-c-c-c-b-ng__cta-button {
        display: inline-block;
        background-color: #e7b10a;
        color: #1a1a2e;
        padding: 18px 40px;
        border-radius: 35px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        border: none;
        cursor: pointer;
    }

    .page-c-c-c-b-ng__cta-button:hover {
        background-color: #ffc107;
        transform: translateY(-4px);
    }

    @media (max-width: 768px) {
        .page-c-c-c-b-ng__hero-title {
            font-size: 2em;
        }

        .page-c-c-c-b-ng__hero-description {
            font-size: 1em;
        }

        .page-c-c-c-b-ng__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-c-c-c-b-ng__hero-button {
            width: 80%;
            max-width: 300px;
            font-size: 1em;
            padding: 12px 25px;
        }

        .page-c-c-c-b-ng__features-title,
        .page-c-c-c-b-ng__guide-title,
        .page-c-c-c-b-ng__promotion-title,
        .page-c-c-c-b-ng__faq-main-title,
        .page-c-c-c-b-ng__cta-title {
            font-size: 1.8em;
        }

        .page-c-c-c-b-ng__features-grid,
        .page-c-c-c-b-ng__guide-steps {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-c-c-c-b-ng__feature-item,
        .page-c-c-c-b-ng__guide-step-item,
        .page-c-c-c-b-ng__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-c-c-c-b-ng__promotion-content {
            flex-direction: column;
        }

        .page-c-c-c-b-ng__promotion-image {
            min-width: unset;
            width: 100%;
        }

        .page-c-c-c-b-ng__promotion-text {
            text-align: center;
        }

        .page-c-c-c-b-ng__promotion-button {
            width: 80%;
            max-width: 300px;
            font-size: 1em;
            padding: 12px 25px;
        }

        .page-c-c-c-b-ng__faq-question {
            padding: 15px 20px;
        }

        .page-c-c-c-b-ng__faq-question-text {
            font-size: 1.1em;
        }

        .page-c-c-c-b-ng__faq-toggle {
            font-size: 1.5em;
        }

        .page-c-c-c-b-ng__faq-answer {
            padding: 0 20px;
        }

        .page-c-c-c-b-ng__faq-item.active .page-c-c-c-b-ng__faq-answer {
            padding: 15px 20px !important;
        }

        .page-c-c-c-b-ng__cta-button {
            width: 80%;
            max-width: 300px;
            font-size: 1.1em;
            padding: 15px 30px;
        }
    }

    @media (max-width: 768px) {
        .page-c-c-c-b-ng img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-c-c-c-b-ng__hero-image-wrapper,
        .page-c-c-c-b-ng__promotion-image {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  