<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #fff;
            margin: 0;
            padding: 20px;
        }
        h1 {
            text-align: center;
            color: #1E3A8A;
            margin-bottom: 10px;
            font-size: 1.5em; 
            line-height: 1.5; 
            padding: 0 15px; 
        }

        .title {
            display: block; /* Ensures it behaves like a block element */
        }


        .main-title {
            font-weight: bold; /* Makes the main title bold */
            font-size: 1.4em; /* Larger font size for the main title */
        }

.subtitle-bottom {
    font-weight: normal; /* Regular weight for bottom subtitle */
    font-size: 0.7em; /* Smaller size for the bottom subtitle */
    color: #3B82F6; /* Lighter color for contrast */
    margin-top: 10px 0; /* Space above and below */
    font-style: italic; /* Optional: italicize for distinction */
}
        .divider {
            width: 60%; 
            height: 2px; 
            background-color: #ddd; 
            margin: 15px auto; 
        }

	.qa-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

        .qa-wrapper {
           display: flex;
    	   flex-direction: column;
    	   align-items: center; /* Center both subtitle and container horizontally */
	   width:40%;
	margin: 0 auto;
}

	.qa-title {
    text-align: center;
    font-size: 1.3em; /* Adjust size as needed */
    font-weight: bold;
    color: #1E3A8A; /* Same color as the main title */
    margin-bottom: 5px;
}

        .qa-container {
            max-width: 600px;
    margin-bottom: 20px; /* for spacing between Q&amp;A and Contact */
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	    float: center; /* Float the container to the left */
            width: 100%; /* Set the container to take 40% of the screen width */
            margin-right: 20px; /* Add space to the right */
        }

	.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40%; /* Adjust the width of the cards section */
    margin-top: 130px;
}

.card h3 {
    margin: 0; /* Remove margin */
    padding: 0; /* Optional: remove padding */
    cursor:pointer;
    display: inline-block;
}

.card {
    padding: 10px; /* Reduced padding for a simpler look */
    color: #1E3A8A; /* Match the title color */
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline; /* Underline the text */
    transition: color 0.3s; /* Add transition for hover effect */
    width:30%;
    margin-left: auto;
    margin-right: 30%;
}

.card:hover {
    color: #2563EB; /* Change color on hover */
}



        .question {
            background-color: #B0D4F1;
border: 1px solid #B0D4F1;
    	    border-radius: 6px; 
            margin: 10px 0;
            padding: 15px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
	    color: #000; 
	    font-weight: 500;
        }
        .question:hover {
            background-color: #D4E8F8; 
    border-color: #2563EB; 
    transform: translateY(-3px);
        }
        .answer {
            display: none;
            padding: 10px 15px;
            margin-top: 10px;
            color: #000; 
    	    font-weight: 400;
            background-color: #ffffff;
	    border: 1px solid #B0D4F1;
            border-top: 1px solid #2563EB;
            border-radius: 0 0 5px 5px;
	    font-size: 15px;
        }
	.video-embed {
        display: block; /* Hide the video by default */
        width: 100%; /* Full width */
        height: 315px; /* Set height */
        border: none; /* No border */
        margin-bottom: 10px; /* Space below video */
    }
/* New Billboard Slider Styles */
        .billboard-container {
            border-color: #1E3A8A; /* Primary blue border for emphasis */
    background-color: #fff; /* White background for professionalism */
            color: #1E3A8A; /* Text color */
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
            position: relative;
            height: 300px;
            overflow: hidden;
	    display: flex; /* Use flexbox for centering */
    	    align-items: center; /* Center vertically */
    	    justify-content: center;
        }

        .billboard-slide {
    display: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center; /* Center the text */
    overflow-y: auto;
    white-space: normal;
    max-height: 100%;
    
}

        .billboard-slide.active {
            display: block;
            opacity: 1;
        }

        /* Navigation Arrows */
        .billboard-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 24px;
            color: #3B82F6;
            padding: 10px;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
        }

        .billboard-nav.left {
            left: 10px;
        }

        .billboard-nav.right {
            right: 10px;
        }



/* New Video Slider Styles */
    .video-slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px; /* Desired visible height of the container */
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure that only the visible portion of the video shows */
}

    .video-slide {
        display: none; /* Hide by default */
        transition: opacity 0.5s ease-in-out;
        opacity: 0;
        width: 100%;
        height: 300px; /* Standard video height */
    }

    .video-slide.active {
        display: block;
        opacity: 1;
    }

    /* Navigation Arrows for Video Slider */
    .video-slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        font-size: 28px;
        color: #3B82F6;
	background-color: rgba(0, 0, 0, 0.2);
        padding: 10px;
        border-radius: 50%;
        user-select: none;
z-index: 2; /* Add z-index to keep arrows on top of the video */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow for a more 3D effect */
    border: 2px solid #fff; /* White border to make it stand out more */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
    }

/* Add a hover effect for better feedback */
.video-slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darken background on hover */
    transform: translateY(-50%) scale(1.1); /* Slightly enlarge on hover for emphasis */
}

    .video-slider-nav.left {
        left: 10px;
    }

    .video-slider-nav.right {
        right: 10px;
    }

    /* Video Embed Styling */
    .video-embed {
    width: 100%;
    height: 500px; /* Large enough to display the full video, but will be clipped */
    position: absolute;
    top: -150px; /* This will move the video upwards so the center portion is visible */
    left: 0;
    right: 0;
    z-index: 1; /* Ensure video stays behind the arrows */
}
	
      .cursive-message {
    font-family: 'Dancing Script', cursive; /* Use the cursive font you included */
    font-size: 1.3em; /* Adjust size as needed */
    font-style: italic; /* Italicize to enhance the signature effect */
    color: #000; /* Match your color scheme */
}
.small-video-embed {
    width: 100%;
    height: 300px; 
    border: none; 
}
/* Clearfix to prevent floating issues */
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }

</pre></body></html>