.upgrade-policy-page {
    width: 100%;
    padding: 40px 20px 70px;
    background: #f6f8fb;
}

.policy-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.policy-hero {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.policy-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font-size: 24px;
}

.policy-hero h1 {
    margin: 0 0 7px;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.policy-hero p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
}

.policy-notice {
    display: flex;
    gap: 13px;
    padding: 17px 19px;
    margin-bottom: 24px;
    background: #eef4ff;
    border: 1px solid #d8e5ff;
    border-radius: 12px;
    color: #344054;
}

.policy-notice > i {
    margin-top: 2px;
    font-size: 18px;
}

.policy-notice strong {
    display: block;
    margin-bottom: 3px;
    color: #101828;
}

.policy-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.policy-sections {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(16, 24, 40, 0.05);
}

.policy-section {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid #eaecf0;
}

.policy-section:last-child {
    border-bottom: 0;
}

.section-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f4f7;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.section-content {
    min-width: 0;
}

.section-content h2 {
    margin: 3px 0 8px;
    color: #101828;
    font-size: 17px;
    font-weight: 650;
}

.section-content p {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-line;
}

.policy-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 22px;
    padding: 0 4px;
    color: #667085;
    font-size: 13px;
}

.policy-footer i {
    font-size: 18px;
}

.policy-footer strong,
.policy-footer span {
    display: block;
}

.policy-footer strong {
    color: #344054;
}

@media (max-width: 600px) {
    .upgrade-policy-page {
        padding: 25px 14px 50px;
    }

    .policy-hero h1 {
        font-size: 23px;
    }

    .policy-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 20px;
    }

    .policy-section {
        padding: 19px 16px;
        gap: 13px;
    }

    .section-number {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
}