/* CSS Document */

 /* Ensure no overflow issues */
        html, body {
            margin: 0;
            padding: 0;
        
        }

        .container, .row, .col {
        
        }

        /* Apply 15px radius to the specific corners */
        .headingOne {
            border-top-left-radius: 15px !important;
            border-top-right-radius: 15px !important;
        }

        .flush-headingOne {
            border-top-left-radius: 15px !important;
            border-top-right-radius: 15px !important;
        }

        .headingNine {
            border-bottom-left-radius: 15px !important;
            border-bottom-right-radius: 15px !important;
        }

        .flush-headingNine {
            border-bottom-left-radius: 15px !important;
            border-bottom-right-radius: 15px !important;
        }

        /* Remove border-radius for xs and sm sizes */
        @media (max-width: 767.98px) {
            .flush-headingOne,
            .headingNine {
                border-top-left-radius: 0 !important;
                border-top-right-radius: 0 !important;
                border-bottom-left-radius: 0 !important;
                border-bottom-right-radius: 0 !important;
            }
        }