		/* Reset default styling */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
       /* Body styling */
        body {
            font-family: Arial, sans-serif;
            background-color: #001F3F; /* Dark background color */
            color: #EAD8B1;
            padding-top: 60px; /* Offset for the fixed navbar */
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh; /* Ensure full height for the body */
            position: relative; /* Position relative for the footer */
        }
        /* Navbar styling */
        .navbar {
            width: 100%;
            background-color: #341e57; /* Medium blue */
            color: #EAD8B1;
            padding: 10px 20px; /* Increased padding for logo and title */
            position: fixed; /* Fixes the navbar at the top */
            top: 0;
            left: 0;
            z-index: 1000; /* Ensures it stays above other content */
            display: flex; /* Flexbox for alignment */
            align-items: center; /* Center items vertically */
        }
        .navbar img {
            width: 50px; /* Adjust logo size */
            height: auto; /* Maintain aspect ratio */
            margin-right: 15px; /* Space between logo and title */
        }
        .navbar h1 {
            font-size: 1.5rem; /* Font size for company name */
            color: #c4b5fd; /* Color for company name */
		}
        .navbar ul {
            list-style-type: none;
            display: flex;
            margin-left: auto; /* Align links to the right */
        }
        .navbar ul li {
            margin: 0 15px;
        }
        .navbar ul li a {
            color: #EAD8B1;
            text-decoration: none;
            font-weight: bold;
        }
        .navbar ul li a:hover {
            color: #6A9AB0; /* Lighter blue for hover effect */
        }

        /* Overlay text styling */
        .hero-text {
            position: absolute;
            color: #FFFFFF; /* Lighter color for better visibility */
            text-align: center;
            /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);*/ /* Shadow for contrast */
			text-shadow: black 4px 4px 5px;
        }
        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        /* Button styling */
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        .hero-button {
            background-color: #6A9AB0;
            color: #001F3F;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .hero-button:hover {
            background-color: #EAD8B1; /* Light cream color on hover */
            color: #001F3F;
        }
        /* New Section styling */
        .features-section {
            background-color: #3A6D8C; /* Medium blue for contrast */
            color: #EAD8B1;
            width: 100%;
            max-width: 1200px;
            padding: 40px;
            border-radius: 15px;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			margin-bottom: 20px;
        }
        .features-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #EAD8B1;
        }
        /* Feature columns */
        .features {
            display: flex;
            justify-content: space-around;
            gap: 20px;
        }
        .feature-column {
            background-color: #6A9AB0; /* Lighter blue */
            color: #001F3F; /* Dark text for contrast */
            width: 30%; /* Three columns */
            max-width: 300px; /* Set max width for the columns */
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: none; /* Disable hover effect */
        }
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #EAD8B1;
        }
        .feature-text {
            font-size: 1rem;
            color: #EAD8B1;
        }
		
        /* New Services Section styling */
        .services-section {
            background-color: #888bf3; /* Medium blue for contrast */
            color: #EAD8B1;
            width: 100%;
            max-width: 1200px;
            padding: 40px;
            border-radius: 15px;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .services-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #EAD8B1;
        }
        /* Services columns */
        .services {
            display: flex;
            justify-content: space-around;
            gap: 20px;
        }
        .services-column {
            background-color: #7739e2; /* Lighter blue */
            color: #001F3F; /* Dark text for contrast */
            width: 30%; /* Three columns */
            max-width: 300px; /* Set max width for the columns */
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: none; /* Disable hover effect */
        }
        .services-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #EAD8B1;
        }
        .services-text {
            font-size: 1rem;
            color: #EAD8B1;
        }
		
        /* Policy TOS Section styling */
        .section-policy {
            background-color: #3A6D8C; /* Medium blue for contrast */
            color: #EAD8B1;
            width: 100%;
            max-width: 1200px;
            padding: 40px;
            border-radius: 15px;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .section-policy h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #EAD8B1;
        }
        /* Lists styling */
        section-policy-ul2 {
            list-style-type: disc; /* Default bullet points */
            margin-left: 20px;
            margin-bottom: 20px;
        }
        section-policy-ol {
            list-style-type: upper-roman; /* Roman numerals */
            margin-left: 20px;
            margin-bottom: 20px;
        }
		
		
        /* Page Content */
        .product-content {
            margin: 20px;
            text-align: center;
        }
		
		
        /* Product Section Styling */
        .product-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            margin: 20px 0;
        }

        .product-card {
            background-color: #3A6D8C; 
            border: 1px solid #6A9AB0; 
            border-radius: 8px;
            width: 300px;
            padding: 20px;
            margin: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            color: #EAD8B1;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-title {
            font-size: 1.5rem;
            color: #EAD8B1;
            margin-bottom: 10px;
        }
        .product-description {
			text-align: left;
            font-size: 1rem;
            color: #EAD8B1;
            margin-bottom: 10px;
        }
        .product-price {
            font-size: 1.25rem;

            color: #EAD8B1;
            margin-bottom: 15px;
        }
        .buy-button {
            background-color: #6A9AB0; /* Light blue */
            color: #001F3F;
            padding: 10px 20px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .buy-button:hover {
            background-color: #EAD8B1; /* Light cream color */
            color: #001F3F;
        }
	
        .product-image {
            width: 100%; /* Full width */
            max-width: 200px; /* Limit maximum width */
            border-radius: 15px; /* Round edges of the image */
            margin-bottom: 15px; /* Space below the image */
        }
		
		
        /* Host Services columns */
        .hostservices-section {
            background-color: #888bf3; /* Medium blue for contrast */
            color: #EAD8B1;
            width: 100%;
            max-width: 1200px;
            padding: 40px;
            border-radius: 15px;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			margin-bottom: 20px;
        }
        .hostservices-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #EAD8B1;
        }
        /* Services columns */
        .hostservices {
            display: flex;
            justify-content: space-around;
            gap: 20px;
        }
        .hostservices-column {
            background-color: #7739e2; /* Lighter blue */
            color: #001F3F; /* Dark text for contrast */
            width: 30%; /* Three columns */
            max-width: 300px; /* Set max width for the columns */
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: none; /* Disable hover effect */
        }
        .hostservices-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #EAD8B1;
        }
        .hostservices-text {
            font-size: 1rem;
            color: #EAD8B1;
        }

        /* Copyright Section styling */
        .copyright {
            width: 100%;
            background-color: #341e57; /* Same color as the other sections */
            color: #EAD8B1;
            padding: 10px;
            text-align: center;
            position: relative; /* Keep it in flow with the document */
            margin-top: auto; /* Push it to the bottom */
			font-size: 90%
        }
        .copyright a {
            color: #EAD8B1;
            text-decoration: none;
            margin: 0 10px; /* Spacing between links */
			font-size: 90%
        }
		