
        /* Reset default browser styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            background-color: #fff;
        }

        .container {
            max-width: 800px;
            margin: 15px auto;
            padding: 15px;
            background-color: #dbe9f4;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
        }

        header {
            text-align: center;
            margin-bottom: 10px;
        }

        .logo {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 2px;
        }

        h1 {
            color: #333;
        }

        .links {
            width: 100%;
            text-align: center;
        }

        .links a {
            display: block;
            text-decoration: none;
            color: #007bff;
            padding: 15px;
            background: #fff;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }

        .links a:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        /* New Text Container Styles */
        .text-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .text-container h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
        }

        .text-container p {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }

        .text-container a {
            color: #007bff;
            text-decoration: none;
        }

        .text-container a:hover {
            text-decoration: underline;
        }

        footer {
            text-align: center;
            margin-top: 20px;
            color: #fff;
        }

        .ad-container {
            width: 100%;
            margin: 20px 0;
            padding: 0;
            background-color: transparent;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        .ad-container img,
        .ad-container iframe {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .ad-container iframe,
        .ad-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            .links a {
                padding: 12px;
                font-size: 16px;
            }
            .text-container {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            .links a {
                padding: 10px;
                font-size: 14px;
            }
            .text-container {
                padding: 10px;
            }
            .text-container h3 {
                font-size: 18px;
            }
            .text-container p {
                font-size: 14px;
            }
        }

        /* Header Styles */
        .custom-header .logo-strip {
            background-color: #fef2e2;
            padding: 10px;
            text-align: center;
        }

        .custom-header .header-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .custom-header .header-logo {
            max-width: 100%;
            height: auto;
            width: 270px;
        }

        .custom-header .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        .custom-header .link-list-strip {
            background-color: #131A22;
            padding: 1px;
            text-align: center;
        }

        .custom-header .header-nav {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .custom-header .header-nav li {
            margin: 5px 15px;
            position: relative;
        }

        .custom-header .header-nav a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .custom-header .header-nav a:hover {
            color: #ff9900;
        }

        .mega-menu-strip {
            background-color: #F6F4FF;
            padding: 10px;
            display: none;
        }

        .mega-menu {
            overflow-x: scroll;
            padding: 20px;
            box-sizing: border-box;
        }

        .mega-menu-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
        }

        .mega-menu-column {
            flex: 0 0 16%;
            min-width: 150px;
            border-right: 1px solid none;
            border-left: 1px solid none;
        }

        .mega-menu-column:first-child {
            border-left: none;
        }

        .mega-menu-column:last-child {
            border-right: none;
        }

        .mega-menu-column h3 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .mega-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-menu-column li {
            margin-bottom: 3px;
            padding: 5px 0;
            box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid #ccc;
        }

        .mega-menu-column li:last-child {
            border-bottom: none;
        }

        .mega-menu-column a {
            color: #000080;
            text-decoration: none;
        }

        .mega-menu-column a:hover {
            color: #ff9900;
        }

        .custom-header .menu-toggle {
            background: none;
            border: none;
            color: #FFFFFF;
            font-size: 20px;
            cursor: pointer;
            margin-bottom: 10px;
            display: none;
        }

        /* Footer Styles */
        footer {
            text-align: center;
            padding: 10px 0;
            background-color: #fef2e2;
            border-top: 1px solid #fef2e2;
        }

        .link-list-strip {
            background-color: #131A22;
            padding: 1px;
        }

        .footer-nav {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .footer-nav li {
            margin: 5px 15px;
        }

        .footer-nav a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #ff9900;
        }

        .social-media-strip {
            margin-top: 15px;
            padding: 10px 0;
            background-color: #232f3e;
        }

        .social-media-links {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }

        .social-media-links li {
            margin: 0 10px;
        }

        .social-media-links img {
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }

        .social-media-links img:hover {
            transform: scale(1.1);
        }

        .copyright-strip {
            background-color: #232f3e;
            padding: 10px;
        }

        .copyright-strip p {
            margin: 0;
            font-size: 15px;
            font-weight: bold;
        }

        .copyright-strip p a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .copyright-strip p a:hover {
            color: #ff9900;
        }

        /* Share Button Styles */
        .share-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 49;
        }

        svg.share-button {
            width: 1.3em;
            height: 1.3em;
            fill: currentcolor;
            transform: translateY(-0.2ex);
        }

        .share-button button {
            background-color: #2c333F;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 16px;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .share-button button:hover {
            background-color: orange;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .custom-header .header-logo {
                width: 120px;
            }
            .custom-header .header-nav {
                display: none;
                flex-direction: column;
            }
            .custom-header .header-nav.active {
                display: flex;
            }
            .custom-header .menu-toggle {
                display: block;
            }
            .mega-menu-column {
                flex: 1 1 100%;
            }
            .footer-nav {
                flex-direction: row;
            }
            .footer-nav li {
                margin: 5px 10px;
            }
            .social-media-links img {
                width: 25px;
                height: 25px;
            }
        }

        @media (max-width: 480px) {
            .custom-header .header-logo {
                width: 200px;
            }
            .custom-header .header-nav li {
                margin: 5px 10px;
            }
            .mega-menu-column {
                flex: 1 1 100%;
            }
            .social-media-links img {
                width: 20px;
                height: 20px;
            }
        }

        /* Inline Style from h2 */
        h2 {
            font-size: 17px;
            text-align: center;
            font-weight: bold;
            color: #000000;
            background-color: rgb(255, 255, 255);
            padding: 6px;
            border: 0px solid #000000;
            border-radius: 5px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }