﻿
        body {
            font-family: 'Open Sans', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
            text-align: center;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
             .body2 {
	            font-family: 'Open Sans', Arial, sans-serif;
	            margin: 0;
	            padding: 15px;
	            background-color: #FFFFFF;
	            color: #333;
	            text-align: Justify;
        }
        h1 {
            font-size: 36px;
            color: #010101;
            padding: 20px;
            margin: 0;
        }
        h2 {
            font-size: 24px;
            font-style: italic;
            color: #011f4b;
            margin: 10px 0;
        }

.seo-emphasis {
    font-weight: normal; /* Removes the default bolding */
    /* If you want to add italic, you can: */
    /* font-style: italic; */
    /* You could also slightly increase font size or change color if you wish, but keep it subtle for flow */
}
        p {
            font-size: 18px;
            line-height: 1.6;
            margin: 15px 0;
        }
        .video-container {
            margin: 20px 0;
        }
        video {
            width: 100%;
            max-width: 340px;
            height: auto;
        }
        .book-cover {
            margin: 20px 0;
        }
        img {
            width: 100%;
            max-width: 1200px;
            height: auto;
        }
        .buttons {
            margin: 20px 0;
        }
        .button {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            background-color: #005b96;
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            border-radius: 5px;
        }
        .button:hover {
            background-color: #03396c;
        }
        .social {
            margin: 20px 0;
        }
        .social a {
            color: #005b96;
            text-decoration: none;
            font-size: 16px;
        }
        .social a:hover {
            text-decoration: underline;
        }
        footer {
            font-size: 12px;
            color: #666;
            margin-top: 20px;
            padding: 10px;
            background-color: #e0e0e0;
        }
        @media (max-width: 600px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 20px;
            }
            p {
                font-size: 14px;
            }
            .button {
                font-size: 16px;
                padding: 8px 16px;
            }
        }
#preRegCount {
            position: fixed; /* Positions the element relative to the viewport */
            bottom: 10px;    /* 10 pixels from the bottom edge */
            left: 10px;      /* 10 pixels from the left edge */
            font-size: 1.5em; /* Adjust size as needed */
            font-weight: bold;
            color: #007bff; /* A prominent color, adjust to your theme */
            background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white background */
            padding: 5px 10px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow */
            z-index: 9999; /* Ensures it stays on top of other content */
            pointer-events: none; /* Allows clicks to pass through if you don't want it interactive */
        }