
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                color: black;
            }

            /* Hero Section */
            .hero-section {
                background-color: #F3F6FD;
                color: white;
                padding: 80px 0;
                /* text-align: center; */
            }

            .hero-section h1 {
                font-size: 45px;
                line-height: 42px;
                margin-bottom: 40px;
                text-align: center;

            }

            .hero-con {
                display: flex;
                align-items: center;
                justify-content: space-between;
                max-width: 1200px;
                /* margin: 60px auto; */
                padding: 40px 20px;
                gap: 40px;
                flex-wrap: wrap;
            }

            /* Content Section */
            .hero-con .content {
                flex: 1 1 500px;
            }

            .hero-con .content p {
                color: #333;
                font-size: 1.05rem;
                line-height: 1.8;
                margin-bottom: 20px;
                font-weight: 300;
            }

            /* Image Section */
            .hero-con .image {
                flex: 1 1 400px;
                display: flex;
                justify-content: center;
            }

            .hero-con .image img {
                width: 100%;
                max-width: 500px;
                height: auto;
                border-radius: 12px;
                object-fit: cover;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                transition: transform 0.3s ease;
            }

            .hero-con .image img:hover {
                transform: scale(1.03);
            }

            /* Responsive Design */
            @media (max-width: 992px) {
                .hero-con {
                    flex-direction: column;
                    text-align: center;
                    gap: 30px;
                    margin: 40px auto;
                }

                .hero-con .content {
                    flex: 1 1 100%;
                    order: 1;
                }

                .hero-con .image {
                    flex: 1 1 100%;
                    order: 2;
                }

                .hero-con .content p {
                    font-size: 1rem;
                    line-height: 1.7;
                    margin-bottom: 15px;
                }
            }

            @media (max-width: 480px) {
                .hero-con {
                    padding: 25px 15px;
                    margin: 30px auto;
                }

                .hero-con .content p {
                    font-size: 0.95rem;
                    line-height: 1.6;
                }

                .hero-con .image img {
                    max-width: 100%;
                    border-radius: 8px;
                }
            }


            .hero-section p {

                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
                color: rgb(90, 89, 89);
                font-size: 19px;
                font-weight: 300;
                line-height: 34px;
                margin-bottom: 10px;
            }


            /* Services Section */
            .services-section {
                background-color: #1C1C1C;
                color: white;
                padding: 80px 0;
            }

            .services-section h2 {
                font-size: 2.2em;
                text-align: center;
                margin-bottom: 60px;
                color: white;
            }

            .wrapper {
                padding: 40px;
                background-color: rgba(255, 255, 255, 0.05);
            }

            /* .service-card-a10 { */


            /* transition: transform 0.3s ease; */
            /* } */
            .underLine {
                margin-bottom: 40px;

                padding-bottom: 30px;
                border-bottom: 1px solid #ffffff;
            }


            .service-card-a10 h3 {
                font-size: 1.8em;
                margin-bottom: 20px;
                color: #ffffff
            }

            .service-card-a10 p {
                font-size: 1.05em;
                line-height: 1.8;
                margin-bottom: 20px;
                color: rgb(192, 191, 191);
            }

            .service-card-a10 ul {
                list-style: none;
                padding-left: 0;
                color: rgb(228, 228, 228);
            }

            .service-card-a10 ul li {
                padding: 10px 0;
                padding-left: 30px;
                position: relative;
                font-size: 1.05em;
            }

            .service-card-a10 ul li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #0072bc;
                font-weight: bold;
                font-size: 1.2em;
            }

            @media (max-width: 768px) {
                .hero-section h1 {
                    font-size: 1.8em;
                }

                .hero-section p {
                    font-size: 1em;
                }

                .services-section h2 {
                    font-size: 1.8em;
                }

                .service-card-a10 {
                    padding: 25px;
                }

                .service-card-a10 h3 {
                    font-size: 1.5em;
                }
            }
        