     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }
           

        @font-face {
            font-family:"PublicSans-Bold" ;
            src: url("./fonts/Public_Sans/static/PublicSans-Bold.ttf");
        }

        @font-face {
           font-family:"Inter_18pt-Regular" ;
           src: url("./fonts/Inter/static/Inter_18pt-Regular.ttf");
       }
     
        @font-face {
            font-family: "ErasDemiITC";
            src: url(../fonts/ErasDemiITC.ttf);
        }


        body {
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            line-height: 1.6;
            color: #333;
            background-color: #f8fafc;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 20px;
        }



        h1,h2,h3{
           color: #021440;
        }

        p{
           color: #434e5c;
        }

        .bttn {
           margin: 0 auto;
           box-shadow: 0 10px 15px rgb(0 0 0 / 15%);
           text-decoration: none;
           font-size: 1.1rem;
           line-height: 1.5;
           width: fit-content;
           transition: 0.5s ease;
           text-align: left;
           /* margin: 0 auto; */
           border-radius: 3px;
           background: #f2b500;
           color: #0e0d0d;
           display: flex;
           align-items: center;
           padding: 0.575rem 1.9rem;
        }


        /* Business Type Sections */
        .business-section {
            padding:15px 0;
            overflow: hidden;
            background: radial-gradient(ellipse at top, #f0f8ff 0%, #ffffff 70%);
        }

        .business-section:nth-child(even) {
            background-color: white;
            
        }

        .business-content {
            display: flex;
            align-items: center;
            gap: 60px;
            min-height: 500px;
        }

        .business-content.reverse {
            flex-direction: row-reverse;
        }

        .content-side {
            flex: 1;
            padding: 40px 0;
        }
        .content-side a{
            text-decoration: none;
        }

        .image-side {
            flex: 1;
            position: relative;
        }

        .business-title {
            display: inline;
             font-family:"PublicSans-Bold" ;
            font-size: 2.2rem;
            font-weight: 800;
            color: #002d77;
            margin-bottom: 8px;
            line-height: 1.2;
            border-bottom: 3px solid #002d77;
        }

        .business-description {
            font-size: 1.22rem;
            padding-top: 1.4rem;
            padding-bottom: 1.3rem;
            line-height: 1.3;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            padding-left: 0.5rem;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
         .features-list li img{
            width: 22px;
            margin-right: 10px;
            margin-top: 3px;
         }


    

        .cta-button {
            display: inline-block;
            color: rgb(32, 129, 255);
            padding: 0px 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
            letter-spacing: 0.02rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            text-decoration: underline;
        }

        .business-image {
            width: 100%;
            height: 350px;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .business-image:hover {
            transform: scale(1.02);
        }

        /* Why Choose Section */
        .why-choose {
            background: linear-gradient(135deg, #0f3076 0%, #086bb2 100%);
            color: white;
            padding: 80px 0;
        }

        .why-choose h2 {
            font-family:"PublicSans-Bold", sans-serif;
            color: #fff;
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }


          .banner-subPage .lft span {
            font-size: 3rem;
            color: #ffa500;
             font-weight: bolder;
             }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 3rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-title {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: #fff;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            background-color: white;
            padding: 80px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        @media(max-width:1140px){
            .business-title{
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }

            .business-content,
            .business-content.reverse {
                flex-direction: column;
                gap: 40px;
            }

            .business-title {
                font-size: 2rem;
            }

            .business-description{
                font-size: 16px;
            }
             .features-list li{
                font-size: 15px;
             }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .container {
                padding: 0 15px;
            }
        }
    