        /* Media query for responsiveness */
        
        @media (max-width: 768px) {
            header {
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 5px;
                margin: 1px;
                max-width: 768px;
                /* justify-content: space-evenly; */
                /* align-self: center; */
                place-content: space-around;
                align-items: baseline;
                gap: 22rem;
            }
            .logo {
                margin-bottom: 20px;
                font-size: 1rem;
            }
            .logo a {
                font-size: 1rem;
            }
            nav ul {
                flex-direction: row;
            }
            nav ul li {
                margin-bottom: 10px;
                margin-right: 0;
                font-size: 19px;
            }
            .top-cont h3 {
                font-size: 3rem;
                padding: 25px 0 0 0;
            }
            .second-cont {
                max-width: 768px;
            }
            .second-cont h4 {
                margin: 2rem 3rem 0 3rem;
                line-height: 1.8rem;
            }
            .table-cont {
                max-width: 768px;
                margin: 1rem 1rem 1rem 1rem;
                padding: 1rem;
                height: 350px;
            }
            .cont-section {
                max-width: 768px;
            }
        }
        
        @media screen and (max-width:425px) and (max-width: 767px) {
            header {
                margin: 1px;
                max-width: 425px;
                justify-content: space-around;
                align-self: center;
                place-content: space-around;
                align-items: baseline;
                gap: 3rem;
            }
            nav ul li a {
                font-size: 10px;
            }
            .top-cont {
                align-items: center;
                max-width: 420px;
                /* border: 1px solid beige; */
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
                margin: -2rem 0 0 0;
                padding: 1rem 0 0 0;
            }
            .top-cont h3 {
                font-size: 1rem;
            }
            .top-cont .cont-info {
                font-size: 8px;
                gap: 0.5rem;
                padding: -1px 0 0 0;
            }
            .second-cont {
                max-width: 420px;
            }
            .second-cont h4 {
                margin: 8px;
                font-size: 0.9rem;
                line-height: 1.55;
                font-family: 'Inter', sans-serif;
            }
            .table-cont {
                max-width: 420px;
                margin: 1rem 1rem 1rem 1rem;
                padding: 1rem;
                height: 250px;
            }
            .table-cont h4 {
                top: -1rem;
                position: relative;
            }
            .table-cont ol {
                line-height: 1.3rem;
                font-size: 14px;
                margin-top: -2rem;
                font-weight: 400;
            }
            .cont-section {
                max-width: 420px;
                margin: -2rem 0 0 0;
            }
            .cont-section .container {
                margin: 1rem;
                line-height: 1.5rem;
                text-align: start;
            }
            .cont-section .container .heading .title {
                font-weight: 600;
                font-size: 1.1rem;
            }
            .cont-section .container .heading .subtitle {
                font-weight: 400;
                font-size: 0.8rem;
            }
            .cont-section .container .heading ul {
                list-style: none;
                font-size: 0.8rem;
                margin-left: 1rem;
                padding: 1rem;
            }
            .cont-mainpara {
                margin: 2rem 0 0 1rem;
                padding: 0rem;
            }
            .cont-para-title {
                margin: 2rem 0 1rem 0rem;
                font-size: 0.8rem;
            }
            .cont-subpara-title {
                font-size: 0.7rem;
            }
            .cont-para {
                font-size: 0.6rem;
                line-height: 1.3rem;
            }
            .scroll-top {
                height: 35px;
                width: 35px;
            }
            .share-cont {
                margin: 4rem 0 0 0;
                height: 200px;
                width: 260px;
            }
            .anc-img img {
                height: 4rem;
                position: relative;
                top: -2.3rem;
                right: -2rem;
            }
            .share-cont .share-title {
                margin: -2.5rem 0 0 0;
                font-size: 1.4rem;
            }
            .share-cont .share-subtitle {
                margin: 0.5rem 0 0 0;
                font-size: 0.9rem;
            }
            .share-icons {
                display: inline-flex;
                position: relative;
                right: -1rem;
                top: 1rem;
            }
            .share-icons a {
                border: 1px solid beige;
                width: 15px;
                height: 15px;
                display: inline-flex;
                margin: 5px;
                border-radius: 15%;
                padding: 1rem;
                font-size: 40px;
                align-items: flex-start;
            }
            .share-icons a img {
                height: 40px;
                width: 40px;
                position: relative;
                top: -0.8rem;
            }
        }
        /* Common styles for all devices */
        /* Define your common styles here */
        /* Styles for screens wider than 1024px (desktop and larger laptops) */
        
        @media (min-width: 1025px) {
            /* Hide .ad-mob on desktop and larger laptops */
            .ad-mob {
                display: none;
            }
        }
        /* Styles for screens between 768px and 1024px (tablets and smaller laptops) */
        
        @media (min-width: 768px) and (max-width: 1024px) {
            /* Define your styles for tablets and smaller laptops here */
            .ad-mob {
                display: none;
            }
            .ad-container {
                display: none;
            }
        }
        /* Styles for screens between 481px and 767px (larger smartphones and small tablets) */
        
        @media (min-width: 481px) and (max-width: 767px) {
            /* Hide .ad-container and .ad-tab on larger smartphones and small tablets */
            .ad-container {
                display: none;
            }
            .ad-mob {
                display: none;
            }
            .ad-tab {
                display: block;
            }
            .right,
            .left {
                display: none;
            }
        }
        /* Styles for screens up to 480px (smaller smartphones) */
        
        @media (max-width: 480px) {
            /* Hide .ad-tab and .ad-container on smaller smartphones */
            .ad-tab,
            .ad-container {
                display: none;
            }
            .ad-mob {
                display: block;
            }
        }
        
        @media (max-width: 380px) {
            /* Hide .ad-tab and .ad-container on smaller smartphones */
            .ad-tab,
            .ad-container {
                display: none;
            }
            .ad-mob {
                display: block;
            }
        }