
        .make-investment-container {
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 80px;
            display: flex;
            min-height: 100vh;
        }

        .make-investment-sidebar {
            width: 30%;
            padding: 80px 0;
            flex-shrink: 0;
        }

        .make-investment-step-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0;
            position: relative;
            padding-bottom: 40px;
        }

        .make-investment-step-item:last-child {
            padding-bottom: 0;
        }

        .make-investment-step-item::after {
            content: '';
            position: absolute;
            left: 15px;
            top: 32px;
            width: 2px;
            height: calc(100% - 32px);
            background-color: #e5e5e5;
        }

        .make-investment-step-item:last-child::after {
            display: none;
        }

        .make-investment-step-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 16px;
            position: relative;
            z-index: 1;
            background-color: white;
        }

        .make-investment-step-icon--completed {
            background-color: #ff6b35;
        }

        .make-investment-step-icon--active {
            background-color: #ff6b35;
            box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
        }

        .make-investment-step-icon--inactive {
            background-color: #f0f0f0;
        }

        .make-investment-step-icon svg {
            width: 14px;
            height: 14px;
            stroke: white;
            fill: none;
            stroke-width: 2.5;
        }

        .make-investment-step-label {
            padding-top: 3px;
            font-size: 15px;
            line-height: 1.5;
        }

        .make-investment-step-label--completed,
        .make-investment-step-label--active {
            color: #1a1a1a;
            font-weight: 400;
        }

        .make-investment-step-label--inactive {
            color: #a0a0a0;
            font-weight: 400;
        }

        .make-investment-main-content {
            flex: 1;
            padding: 50px 0 80px 20px;
            width: 70%;
        }

        .make-investment-content-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        .make-investment-header {
            margin-bottom: 40px;
        }

        .make-investment-header-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1a1a1a;
        }

        .make-investment-header-description {
            color: #666;
            line-height: 1.6;
            font-size: 15px;
        }

        .make-investment-finalize-section {
            background-color: #fafafa;
            padding: 36px;
            border-radius: 10px;
            margin-bottom: 32px;
        }

        .make-investment-section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .make-investment-section-intro {
            color: #666;
            margin-bottom: 28px;
            line-height: 1.6;
            font-size: 15px;
        }

        .make-investment-steps-wrapper {
            margin-bottom: 0;
        }

        .make-investment-steps-list {
            margin-left: 20px;
            counter-reset: item;
            list-style: none;
        }

        .make-investment-step-detail {
            margin-bottom: 18px;
            line-height: 1.7;
            color: #333;
            font-size: 15px;
            counter-increment: item;
            position: relative;
            padding-left: 8px;
        }

        .make-investment-step-detail::before {
            content: counter(item) ". ";
            font-weight: 600;
            color: #1a1a1a;
        }

        .make-investment-step-highlight {
            font-weight: 600;
            color: #1a1a1a;
        }

        .make-investment-outcome-box {
            background-color: #fafafa;
            padding: 36px;
            border-radius: 10px;
            margin-bottom: 32px;
        }

        .make-investment-outcome-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .make-investment-outcome-list {
            list-style: none;
        }

        .make-investment-outcome-item {
            padding-left: 20px;
            position: relative;
            margin-bottom: 12px;
            color: #666;
            line-height: 1.7;
            font-size: 15px;
        }

        .make-investment-outcome-item:last-child {
            margin-bottom: 0;
        }

        .make-investment-outcome-item::before {
            content: '•';
            position: absolute;
            left: 4px;
            color: #333;
            font-weight: bold;
        }

        .make-investment-notification-box {
            background-color: #fafafa;
            padding: 36px;
            border-radius: 10px;
            margin-bottom: 32px;
        }

        .make-investment-notification-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .make-investment-notification-description {
            color: #666;
            line-height: 1.7;
            font-size: 15px;
        }

        .make-investment-disclaimer-text {
            font-size: 13px;
            color: #999;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .make-investment-finalize-btn {
            background-color: #2d1b4e;
            color: white;
            border: none;
            padding: 15px 36px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .make-investment-finalize-btn:hover {
            background-color: #1f1338;
        }

        .make-investment-action-container {
            text-align: right;
        }

        .make-investment-success-checkmark {
            color: #22c55e;
            font-size: 28px;
            line-height: 1;
        }


/* second code */


.investment-completion-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 100%;
        }

        .investment-completion-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e5e5e5;
        }

        .investment-completion-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .investment-completion-checkmark {
            color: #22c55e;
            font-size: 22px;
        }

        .investment-step-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
            gap: 20px;
        }

        .investment-step-row:last-of-type {
            border-bottom: none;
        }

        .investment-step-left {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            flex: 1;
        }

        .investment-step-status {
            font-size: 13px;
            color: #999;
            white-space: nowrap;
            min-width: 80px;
            padding-top: 2px;
        }

        .investment-step-description {
            font-size: 15px;
            color: #1a1a1a;
            font-weight: 500;
            line-height: 1.5;
        }

        .investment-step-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .investment-action-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            border: 1px solid #d0d0d0;
            background-color: white;
            color: #333;
        }

        @media (max-width: 768px) {
            body {
                padding: 20px;
            }

            .investment-completion-card {
                padding: 24px;
            }

            .investment-completion-header {
                margin-bottom: 24px;
                padding-bottom: 16px;
            }

            .investment-completion-title {
                font-size: 18px;
            }

            .investment-step-row {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 16px 0;
            }

            .investment-step-left {
                flex-direction: column;
                gap: 8px;
            }

            .investment-step-status {
                min-width: auto;
            }

            .investment-step-actions {
                justify-content: flex-start;
                width: 100%;
            }

            .investment-action-btn {
                flex: 1;
                min-width: 140px;
            }
        }

        @media (max-width: 480px) {
            .investment-action-btn {
                width: 100%;
                text-align: center;
            }

            .investment-step-actions {
                flex-direction: column;
            }
        }

        .investment-action-btn:hover {
            background-color: #f5f5f5;
            border-color: #b0b0b0;
        }

        .investment-action-btn--primary {
            background-color: #2d1b4e;
            color: white;
            border-color: #2d1b4e;
        }

        .investment-action-btn--primary:hover {
            background-color: #1f1338;
            border-color: #1f1338;
        }

        .investment-disclaimer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e5e5e5;
            font-size: 13px;
            color: #999;
            line-height: 1.6;
        }


/*////// third css //////////////*/


.advisory-client-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            max-width: 700px;
            width: 100%;
        }

        .advisory-client-header {
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e5e5e5;
        }

        .advisory-client-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .advisory-step-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
            gap: 20px;
        }

        .advisory-step-row:last-of-type {
            border-bottom: none;
        }

        .advisory-step-left {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            flex: 1;
        }

        .advisory-step-status {
            font-size: 13px;
            color: #999;
            font-style: italic;
            white-space: nowrap;
            min-width: 80px;
            padding-top: 2px;
        }

        .advisory-step-description {
            font-size: 15px;
            color: #1a1a1a;
            font-weight: 500;
            line-height: 1.5;
        }

        .advisory-step-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .advisory-action-btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            border: 1px solid #d0d0d0;
            background-color: white;
            color: #333;
        }

        .advisory-action-btn:hover {
            background-color: #f5f5f5;
            border-color: #b0b0b0;
        }

        .advisory-disclaimer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid #e5e5e5;
            font-size: 13px;
            color: #999;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            body {
                padding: 20px;
            }

            .advisory-client-card {
                padding: 24px;
            }

            .advisory-client-header {
                margin-bottom: 24px;
                padding-bottom: 16px;
            }

            .advisory-client-title {
                font-size: 18px;
            }

            .advisory-step-row {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 16px 0;
            }

            .advisory-step-left {
                flex-direction: column;
                gap: 8px;
            }

            .advisory-step-status {
                min-width: auto;
            }

            .advisory-step-actions {
                justify-content: flex-start;
                width: 100%;
            }

            .advisory-action-btn {
                flex: 1;
                min-width: 140px;
            }
        }

        @media (max-width: 480px) {
            .advisory-action-btn {
                width: 100%;
                text-align: center;
            }

            .advisory-step-actions {
                flex-direction: column;
            }
        }