	body {
		font-family: Arial, sans-serif;
		margin: 0;
		padding: 0;
		text-align: center;
		background-color: #f4f4f4;
		overscroll-behavior-y: contain; /* prevents pull-down-refresh on Mobile devices */
	}
	/* embossed header*/
	h1 {
	  display: flex;
	  align-items: center;  /* Center vertically */
	  justify-content: center;  /* Center horizontally */
	  gap: 10px; /* Adds space between logo and text */
	  font-size: 40px;
	  font-weight: bold;
	  text-shadow: 0 1px 0 #ccc, 
		   0 2px 0 #c9c9c9,
		   0 3px 0 #bbb,
		   0 4px 0 #b9b9b9,
		   0 5px 0 #aaa,
		   0 6px 1px rgba(0,0,0,.1),
		   0 0 5px rgba(0,0,0,.1),
		   0 1px 3px rgba(0,0,0,.3),
		   0 3px 5px rgba(0,0,0,.2),
		   0 5px 10px rgba(0,0,0,.25),
		   0 10px 10px rgba(0,0,0,.2),
		   0 20px 20px rgba(0,0,0,.15);
	}
	h1 img {
	  background-color: inherit; /* Inherits h1 background */
	}
	.hero {
		background: #1C2228;
		color: white;
		padding: 5px;
		border:outset;
		border-radius: 10px;
		z-index:1;
	}
	.menu-bar {
		display: flex;
		justify-content: space-around;
		background: #333;
		padding: 10px 0;
		border:outset;
		border-radius: 10px;
	}
	.menu-item {
		position: relative;
		color: white;
		cursor: pointer;
		padding: 10px;
		z-index:1;
		border:outset;
		border-radius: 10px;
		width: 90px;
	}
	.menu-item .caret {
		margin-left: 5px;
	}
	.menu-content {
		display: none;
		position: absolute;
		background: white;
		color: black; /* added by myself */
		padding: 20px;
		border-radius: 20px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		text-align: left;
		width: 400px;
		top: 35px;
		left: 50%;
		transform: translateX(-50%);
		margin-left:30px;
		text-align:justify;
		border:outset;
	}
	.menu-item:hover .menu-content {
		display: block;
	}
	.portfolio {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 20px;
	}
	.store-card {
		background: white;
		padding: 15px;
		margin: 10px;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		width: 250px;
		text-align: center;
		border: outset;
		font-size: 18px;
		text-align: justify;
	}
	.store-card h3{
		text-align: center;
	}
	.how-it-works {
		padding: 20px;
		background: #fff;
		margin: 20px;
		border-radius: 5px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		margin-bottom: 60px;
		text-align: auto;
	}
	/* @media (max-width: 768px) {*/
	@media (max-width: 800px) {
		.menu-bar {
			display: none;
		}
		.mobile-menu {
			display: block;
		}
	}

/* Footer Styling */
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: white;
	text-align: center;
	padding: 10px 0;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* Menu Container */
.footermenu {
	display: flex;
	justify-content: space-around;
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
}

/* Menu Item */
.footermenu-item {
	position: relative;
	text-align: center;
	cursor: pointer;
}

/* Home Button */
.footermenu-item a {
	text-decoration: none;
	color: white;
	font-size: 16px;
	padding: 10px;
}

/* Menu Header */
.footermenu-header {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	padding: 10px;
	border-radius:10px;
	border:outset;
	width:80px;
}

/* Caret */
.caret {
	transition: transform 0.3s ease;
}

/* Footer Menu Content */
.footermenu-content {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	/*background: #444;*/
	padding: 10px;
	width: 150px;
	display: none;
	border-radius: 20px;
	box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
	background:white;
	color:black;
}

/* Show Content */
.footermenu-content.show {
	display: block;
}
/* rotating logo */
.rotating-logo {
	animation: rotateLogo 5s linear infinite;
}
  
@keyframes rotateLogo {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
/* Container for the scrolling message */
.announcement-bar {
	width: 100%;
	overflow: hidden;
	background-color: #ffcc00;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0;
	position: relative;
	text-align: center; /* Center the text initially */
	white-space: nowrap;
}

/* The actual text that will start scrolling */
.scrolling-text {
	display: inline-block;
	position: relative;
	white-space: nowrap;
	font-size: 32px;
	font-weight: bold;
}

/* Scrolling animation */
@keyframes scrollText {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}

/* Class to start scrolling */
.scrolling {
	animation: scrollText 20s linear infinite;
}

/* Pause animation on hover */
.scrolling:hover {
	animation-play-state: paused;
}
/* mobile css */
.mobile-layout {
    font-size: 16px;
    padding: 10px;
}

.mobile-nav {
    display: block;
    background-color: #333;
    color: white;
}

.desktop-only {
    display: none;
}
.mobile-menu {
	display: none;
	background: #333;
	color: white;
	padding: 10px;
	cursor: pointer;
	text-align: left;
}
.mobile-menu-item {
		position: relative;
		background: white;
		color: black;
		cursor: pointer;
		padding: 10px;
		z-index:10;
		border:outset;
		border-radius: 10px;
		z-index: 1000; /* Ensure it appears above other elements */
		/*font-weight: bold;*/
	}
.mobile-menu-item .caret {
	margin-left: 5px;
}
.mobile-menu-content {
	display: none;
	position: relative;
	background: white;
	color: black; 
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	width: 90%; 
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
	margin: auto;
	text-align:justify;
	border:outset;
	z-index: 2000; /* Very high to ensure it overlays */
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.mobile-menu-item:hover .mobile-menu-content {
	display: block;
}

.closebutton {
	background: green;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	border: outset;
	padding: 5px;
	float: right;
}
/* contact form */
.contact-form {
	position: fixed;
	top: 10px;
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	width: 400px;
	max-height: 600px;
	margin-right: 10px;
	border: outset;
	z-index: 200;
	overflow: auto;
}
.contact-form h2 {
	margin-bottom: 15px;
	font-size: 24px;
}
.contact-form input, .contact-form textarea {
	width: 96%;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 20px;
	font-weight: bold;
}
.contact-form button {
	background: green; /*#b8a99b;*/
	color: white;
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 90%;
	font-size: 18px;
}
.contact-form button:hover {
	background-color: #c82333;
}	
.display_point {
	padding: 10px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	width: 400px;
	font-size: 18px;
	margin: auto;
	display:none;
}
.close-btn {
	float: right;
	font-size: 32px;
	cursor: pointer;
	color: red;
	background:green;
	padding: 5px;
	border-radius: 15px;
	border: outset;
	width: 20px;
	margin: auto;
	text-align: center;
}
/* Testimonials */
.testimonial-container {
	width: 400px;
	max-height: 600px;
	background: white;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	text-align: justify;
	position: fixed;
	top: 10px;
	z-index: 200;
	font-size: 18px;
	margin: auto;
	overflow: auto;
}
.testimonial {
	display: none;
	font-size: 18px;
	color: #333;
}
.active {
	display: block;
}
.author {
	margin-top: 10px;
	font-weight: bold;
	color: #555;
}
.nav-buttons {
	margin-top: 15px;
}
.nav-buttons button {
	padding: 10px;
	margin: 5px;
	/*border: none;*/
	cursor: pointer;
	border-radius: 5px;
	background-color: green;
	color: white;
	font-weight: bold;
	width: 80px;
	border: outset;
}
.nav-buttons button:hover {
	background-color: #c82333;
}
/* FAQs */
.faq-container {
	width: 400px;
	max-width: 600px;
	max-height: 600px;
	margin: auto;
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 10px;
	z-index: 200;
	font-size: 18px;
	margin: auto;
	overflow: auto;
}
.faq-item {
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
}
.faq-question {
	font-weight: bold;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: justify;
	color: #007BFF;
	text-align: left;
}
.faq-answer {
	display: none;
	padding-top: 5px;
	color: black;
	text-align: justify;
}

.closefaq-btn:hover {
	background-color: #c82333;
}
/* store description */
.store-description-container{
	width: 400px;
	max-width: 600px;
	max-height: 600px;
	margin: auto;
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 10px;
	z-index: 200;
	font-size: 18px;
	margin: auto;
	overflow: auto;
}

.store-description{
	text-align: justify;
}