.chinese-visa-guide-page {
    --cvg-bg: #eadbb7;
    --cvg-text: #4b473f;
    --cvg-heading: #2a3d43;
    --cvg-accent: #b61d2c;
    --cvg-accent-dark: #8f1520;
    --cvg-line: #d7ba8a;
    --cvg-step-line: #d98579;
    --cvg-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    background: var(--cvg-bg);
    color: var(--cvg-text);
}

.chinese-visa-guide-page * {
    box-sizing: border-box;
}

.cvg-container {
    width: min(100%, 1220px);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.cvg-container--narrow {
    width: min(100%, 1040px);
}

.cvg-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    padding: 70px 0 64px;
    position: relative;
    box-shadow: inset 0 -12px 20px rgba(0, 0, 0, 0.12);
}

.cvg-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: linear-gradient(180deg, rgba(234, 219, 183, 0) 0%, rgba(234, 219, 183, 0.9) 100%);
}

.cvg-hero__content {
    max-width: 520px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cvg-hero__title {
    margin: 0 0 16px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 700;
    color: #fff;
}

.cvg-hero__text {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.cvg-hero__text p:last-child {
    margin-bottom: 0;
}

.cvg-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cvg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.cvg-btn__arrow {
    line-height: 1;
}

.cvg-btn--primary {
    color: #fff;
    background: linear-gradient(180deg, #d5414c 0%, var(--cvg-accent) 100%);
    box-shadow: var(--cvg-shadow);
}

.cvg-btn--primary:hover {
    background: linear-gradient(180deg, #c7343e 0%, var(--cvg-accent-dark) 100%);
    transform: translateY(-1px);
}

.cvg-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    box-shadow: var(--cvg-shadow);
}

.cvg-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.cvg-btn--light {
    color: var(--cvg-heading);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.cvg-btn--light:hover {
    transform: translateY(-1px);
}

.cvg-body {
    padding: 28px 0 0;
    background: var(--cvg-bg);
}

.cvg-intro {
    margin: 0 auto 28px;
}

.cvg-intro__title {
    margin: 0 0 18px;
    text-align: center;
    color: var(--cvg-heading);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cvg-intro__content {
    font-size: 14px;
    line-height: 1.7;
    color: #4e4a43;
}

.cvg-intro__content h3,
.cvg-intro__content h4,
.cvg-intro__content strong {
    color: var(--cvg-heading);
}

.cvg-intro__content ul {
    padding-left: 18px;
    margin: 0 0 18px;
}

.cvg-intro__content p,
.cvg-intro__content ul,
.cvg-intro__content ol {
    margin-top: 0;
}

.cvg-steps {
    padding-bottom: 26px;
}

.cvg-step {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 30px;
    align-items: start;
    padding: 18px 0;
}

.cvg-step__icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.cvg-step__icon img {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: cover;
}

.cvg-step__main {
    min-width: 0;
}

.cvg-step__toggle {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    font: inherit;
    color: inherit;
}

.cvg-step__title {
    font-size: 32px;
    line-height: 1.1;
    color: var(--cvg-heading);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cvg-step__chevron {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cvg-step__chevron::before,
.cvg-step__chevron::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 11px;
    height: 2px;
    background: var(--cvg-heading);
    transition: transform 0.2s ease;
}

.cvg-step__chevron::before {
    left: 0;
    transform: rotate(45deg);
}

.cvg-step__chevron::after {
    right: 0;
    transform: rotate(-45deg);
}

.cvg-step.is-open .cvg-step__chevron::before {
    transform: rotate(-45deg);
}

.cvg-step.is-open .cvg-step__chevron::after {
    transform: rotate(45deg);
}

.cvg-step__content {
    padding: 0 0 10px;
}

.cvg-step__content-inner {
    max-width: 760px;
    padding-right: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #4e4a43;
}

.cvg-step__content-inner ul {
    padding-left: 18px;
    margin: 0 0 16px;
}

.cvg-step__content-inner p,
.cvg-step__content-inner ul,
.cvg-step__content-inner ol {
    margin-top: 0;
}

.cvg-step__content-inner strong,
.cvg-step__content-inner h3,
.cvg-step__content-inner h4 {
    color: var(--cvg-heading);
}

.cvg-footer-band {
    padding: 46px 0 0;
    background-color: var(--cvg-bg);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.cvg-footer-cta {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, #d4434d 0%, #a71824 100%);
    box-shadow: var(--cvg-shadow);
    transform: translateY(34px);
}

.cvg-footer-cta__content {
    min-height: 112px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cvg-footer-cta__text-wrap {
    color: #fff;
    text-align: center;
    flex: 1;
}

.cvg-footer-cta__title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.cvg-footer-cta__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.cvg-footer-cta__text p:last-child {
    margin-bottom: 0;
}

.cvg-footer-cta__button-wrap {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cvg-step {
        grid-template-columns: 90px 1fr;
        gap: 20px;
    }

    .cvg-step__title {
        font-size: 24px;
    }

    .cvg-footer-cta__content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .cvg-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cvg-hero {
        min-height: 380px;
        padding: 58px 0;
    }

    .cvg-hero__title {
        font-size: 36px;
    }

    .cvg-hero__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cvg-btn {
        width: 100%;
        max-width: 320px;
    }

    .cvg-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cvg-step__icon {
        margin: 0;
    }

    .cvg-step__title {
        font-size: 22px;
    }

    .cvg-footer-cta {
        transform: translateY(24px);
    }
}
