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

        html, body {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
    	
    	#backgroundVideo {
    		position: fixed;
    		top: 0;
    		left: 0;
    		width: 100%;
    		height: 100%;
    		object-fit: cover;
    		z-index: -1;
		}
    	
        body {
            background-image: url('./assets/img/blowing_grass.jpg');
            background-size: cover;
            background-attachment: fixed;
            color: #e0e0e0;
            font-family: 'Lato', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* Navigation Bar */
        nav {
            background-color: rgba(28, 28, 28, 0.9);
            padding: 15px 20px; /* Padding added to bring content away from edges */
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px; /* Limits max width for better alignment */
            margin: 0 auto;
        }

        nav .logo {
            font-size: 24px;
            color: #00bcd4;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li:first-child {
            margin-left: 0; /* Removes extra margin on the first item */
        }

        nav ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: #00bcd4;
            font-weight: bold;
        }

        .menubutton {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menubutton img {
            width: 24px;
            height: 24px;
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(28, 28, 28, 0.9);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
                text-align: center;
            }

            .menubutton {
                display: block;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                background-color: rgba(28, 28, 28, 0.9);
                width: 100%;
                text-align: center;
                position: absolute;
                top: 60px;
                left: 0;
                z-index: 10;
            }

            nav ul.show {
                display: flex;
            }

            .menubutton {
                display: block;
            }

            .card {
                padding: 20px;
            }

            #map {
                height: 300px;
            }
        }

        /* Card Styles */
        .container.services-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 50px 20px;
        }

        .card {
            background-color: rgba(0, 0, 0, 0.85);
            color: #e0e0e0;
            border: 1px solid #00bcd4;
            margin: 20px auto;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 188, 212, 0.6);
            max-width: 700px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 188, 212, 0.8);
        }

        .card h4 {
            font-size: 18px;
            line-height: 1.8;
        }

        
                /* Need Help Button */
        .help-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #00bcd4;
            color: #fff;
            font-size: 16px;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            box-shadow: 0 0 10px #00bcd4;
            cursor: pointer;
            z-index: 1000;
        }

        .help-button:hover {
            background-color: #008ba3;
        }

        /* Help Popup */
        /* Help Popup Responsive */
		.help-popup {
    		position: fixed;
    		bottom: 80px;
    		right: 20px;
    		width: 300px; /* Default width for medium and large screens */
    		max-width: 90%; /* Ensures it doesn't overflow on small screens */
    		background-color: #1c1c1c;
    		color: #e0e0e0;
    		border-radius: 8px;
    		box-shadow: 0 0 20px #00bcd4;
    		display: none;
    		z-index: 1000;
    		padding: 15px;
		}

		/* For smaller devices (width less than 480px) */
		@media (max-width: 480px) {
    	.help-popup {
        	width: 90%; /* Adjust to almost full width */
        	bottom: 20px; /* Bring closer to the bottom */
        	right: 5%; /* Center horizontally */
        	left: 5%; /* Center horizontally */
    	}
	}

		/* Help Button Responsive */
		.help-button {
    		bottom: 20px;
    		right: 20px;
    		font-size: 14px; /* Slightly smaller font size for smaller screens */
    		padding: 8px 16px; /* Adjust padding */
	}

		@media (max-width: 480px) {
    	.help-button {
        	padding: 6px 12px; /* Compact padding */
        	font-size: 12px; /* Smaller font size */
    	}
	}

        .help-popup-header {
            background-color: #00bcd4;
            color: #fff;
            padding: 10px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            font-weight: bold;
        }

        .help-popup-body {
            padding: 10px 0;
        }

        .help-popup input,
        .help-popup textarea,
        .help-popup button {
            width: 100%;
            margin: 10px 0;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #555;
        }

        .help-popup input {
            background-color: #333;
            color: #e0e0e0;
        }

        .help-popup button {
            background-color: #00bcd4;
            color: #fff;
            font-weight: bold;
            cursor: pointer;
        }

        .help-popup button:hover {
            background-color: #008ba3;
        }
        

        /* Footer */
        footer {
            background-color: rgba(28, 28, 28, 0.95);
            color: #00bcd4;
            text-align: center;
            padding: 20px 0;
            box-shadow: 0 0 10px #00bcd4;
            margin-top: auto; /* Keeps footer at the bottom */
        }

        footer a {
            color: #00bcd4;
        }