
:root {
            --step1-color: #5144D5;
            --step2-color: #19C985;
            --step3-color: #E2CD33;
            --step4-color: #79A316;
            --text-color: #494949;
            --heading-color: #000;
            --light-bg: #f8f9fa;
        }


        .container2 {
            width: 100%;
            /* padding: 2rem; */
            border-radius: 12px;
            margin: 35px auto;
        }

        .step-guide-header2 h2 {
          font-weight: 700;
          font-size: 36px;
          margin: 12px 0px 5px 0px;
          color: var(--color-gray-700);
        }

        .step-guide-header2 {
            display: flex;
            justify-content: center;logo-img{
            height:10px;
            width:0px;
            background:none;
        }
            text-align: center;
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }

         .logo-box2 {
            display: flex;
            align-items: center;
            background-color: #F7F1FC;
            color: #79509F;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border-width: 1px 4px 4px 1px;
            border-style: solid;
            border-color:  #79509F;
        }

        .logo-box2 svg {
            width: 24px;
            height: 24px;
            margin-right: 0.5rem;
        }

        .logo-text2 {
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        #logo-text2 {
            background: url('./sg.svg') no-repeat 1px center;
            background-size: 24px 24px;
            padding-left:30px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
        }

        .subtitle2 {
            font-size: 18px;
            font-weight: 500;
            /* margin-bottom: 3rem; */
            max-width: 1000px;
            line-height: 1.5;
        }

        .steps-container2 {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-between;
        }

        .step2 {
            flex: 1;
            padding: 1.5rem 20px;
            border-radius: 8px;
        }

        .step-number2 {
            width: 50px;
            height: 56px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .step-heading2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 0.5rem;
        }

        .step-content2 {
            font-size: 14px;
            font-weight: 400;
            line-height: 150%;
            color: #2C3947;
            margin: 0px;
        }

        /* Specific colors for each step */
        .step2:nth-child(1) .step-number2 {
            background-color: var(--step1-color);
        }
        .step2:nth-child(2) .step-number2 {
            background-color: var(--step2-color);
        }
        .step2:nth-child(3) .step-number2 {
            background-color: var(--step3-color);
        }
        .step2:nth-child(4) .step-number2 {
            background-color: var(--step4-color);
        }

        /* Responsive design for mobile */
        @media (max-width: 768px) {

            .step-guide-header2 {
                text-align: left;
                align-items: flex-start;
                margin-bottom: 1rem;
            }

            h1 {
                font-size: 1.75rem;
            }

            .subtitle2 {
                font-size: 16px;
                margin-bottom: 2rem;
                color: #2C3947;
            }
            
            .steps-container2 {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                padding: 0px 20px;
                border-left: 1px solid #d3d3d3;
            }

            .step2 {
                max-width: 100%;
                width: 100%;
                padding: 0rem;
            }

            .step-number2 {
                width: 50px;
                height: 56px;
                font-size: 24px;
            }
        }
