 /* General Reset */
        * {
            padding: 0;
            box-sizing: border-box;
        }

        /* Body and Font Styling */
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0px;
            background-color: #f4f4f9;
        }
        
        p {
    		margin-top: 10;
		}

        /* Header Styling */
        header {
            background-color: #1e1e2f;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        header img {
            max-height: 180px;
   			max-width: 90%; /* Ensures the logo scales within the available space */
    		height: auto; /* Maintains aspect ratio */
        }

        /* Navigation Menu */
        nav {
            position: absolute;
            top: 1rem;
            left: 1rem;
        }

        .menu-button {
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-button img {
            width: 40px;
            height: auto;
        }

        .menu {
            display: none;
            position: absolute;
            top: 50px;
            left: 1rem;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            width: 220px;
        }

        .menu a {
            display: block;
            padding: 0.5rem 1.5rem;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #ddd;
            white-space: nowrap; /* Prevent text wrapping */
   			text-align: left; /* Align text to the left */
    		width: 100%; /* Ensure it takes the full menu width */
    		box-sizing: border-box; /* Includes padding in width calculations */
        }

        .menu a:hover {
            background-color: #f4f4f9;
        }

        .menu a:last-child {
            border-bottom: none;
        }
        
        .menu a.main-menu {
			font-weight: bold; /* Make text bold */
			color: #000; /* Optional: Ensure bold text has a clear, dark color */
		}

        .menu a.sub-menu {
			padding-left: 2.5rem; /* Indent to visually separate from main items */
			font-size: 0.9rem; /* Slightly smaller font size */
			color: #666; /* Slightly lighter color for distinction */
		}
		
		.menu a.sub-menu:hover {
			background-color: #eaeaf5; /* Subtle hover effect to match */
			color: #333; /* Darken text on hover for readability */
		}


        /* Section Styling */
        section {
            padding: 2rem 1rem;
            text-align: center;
        }

        section:nth-child(odd) {
            background-color: #fff;
        }

        section:nth-child(even) {
            background-color: #f0f0f5;
        }

         .section-content {
   			max-width: 1000px;
   			margin: 20px auto 0 auto;
    		text-align: left;
		}


        .section-title {
            font-size: 2rem;
            margin: 0px auto 0 auto;
            color: #812525;
        }

        ul {
            margin-left: 1rem;
        }

        .hero {
            background: linear-gradient(135deg, #812525, #581717);
            color: #fff;
            padding: 2rem 1rem;
            box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
        }

        .hero h2 {
        	margin-top: 0;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin: 0 auto;
            max-width: 600px;
        }
        
        .table-contents h2 {
			font-size:1.3rem; 
		}
		
	 	.table-contents h2.subHeading {
			padding-left: 2.5rem;
			font-size:1.2rem; 
		}
        
         .responsive-iframe {
			position: relative;
			width: 100%; /* Full width */
			padding-bottom: 56.25%; /* Aspect ratio for 16:9 */
			height: 0; /* Set height to 0 for the aspect ratio to work */
			overflow: hidden;
		}
		
		.responsive-iframe iframe {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%; /* Full width of the container */
			height: 100%; /* Full height of the container */
		}
		
		.responsive-image {
		 max-width: 100%;'
		 height: auto;
		 margin: 1rem 0;
		}
		
		.responsive-image-grid2 {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
			gap: 10px; /* Add spacing between images */
		}
		    
		.responsive-image-grid2 img {
			width: 100%; /* Ensure images fill their grid cells */
			height: auto; /* Maintain aspect ratio */
		}
		
		.responsive-image-grid3 {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 10px; /* Add spacing between images */
		}
		
		.responsive-image-grid3 img {
			width: 100%; /* Ensure images fill their grid cells */
			height: auto; /* Maintain aspect ratio */
		}
		
		@media (max-width: 600px) {
			.responsive-image-grid2 {
				grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		
			.responsive-image-grid3 {
				grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			}
		}

		
	/* 
	.responsive_image_grid {
		  max-width: 1000px;
		  margin: 0 auto;
		  display: grid;
		  gap: 1rem;
		}
		
		@media (min-width: 600px) {
		  .responsive_image_grid { grid-template-columns: repeat(2, 1fr); }
		}
		
		@media (min-width: 900px) {
		  .cards { grid-template-columns: repeat(3, 1fr); }
		}
 */
		

        /* Footer Styling */
        footer {
            background-color: #1e1e2f;
            color: #fff;
            padding: 1.5rem 0;
            text-align: center;
            margin-top: 2rem;
            font-size: 0.9rem;
        }

        footer p {
            margin: 0;
        }

       