body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding-top: 90px;
	background-color: #f4f4f9;
	color: #333;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	z-index: 1000;
	background-image: linear-gradient(175deg, #fff, #eaeaf0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

header .logo {
	width: 100%;
	background-image: url('logo.png');
	background-size: contain;
	background-position: 10px;
	background-repeat: no-repeat;
	height: 50px;
	max-width: 1200px;
	margin: 0 auto;
}

header nav {
	width: 100%;
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.0);
	padding: 0;
	border-radius: 0;
}

header nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

header nav ul li {
	margin: 0 5px;
}

header nav ul li a {
	white-space: nowrap;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease;
	padding: 10px 15px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.1);
}

header nav ul li a:hover {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.2);
}

header nav ul li a.active {
	color: #fff;
	background-color: #ff8800;
}

a {
	color: #003366;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #669900;
}

section img {
	border-radius: 10px;
}

main section {
	margin: 0 auto;
}

main section img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

main section.services ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	list-style-type: none;
	padding: 0;
}

main section.services ul li {
	text-align: center;
	background-color: #f4f4f9;
	padding: 10px;
}

main section.services ul li img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

main section.about img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	object-fit: cover;
}

main section.contact img {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
	object-fit: cover;
}
main section.contact p img {
	width: 32px;
	height: 32px;
	vertical-align: middle;
	display: inline-block;
	margin-left: 0;
	margin-right: 10px;
}

main section.services img {
	box-shadow: none;
}

main {
	margin: 0 auto;
	min-width: 600px;
	max-width: 100%;
}

main.light {
	background-color: #fff;
}

main section {
	max-width: 1200px;
	padding: 20px 10px;
	scroll-margin-top: 200px;
}

main section h1 {
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

.product-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	margin: 20px auto;
}

.product-header {
	width: 100%;
	display: flex;
	gap: 30px;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-direction: column;
}

.product-info-container {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.product-main-image {
	width: 50%;
	height: auto;
	object-fit: cover;
	box-shadow: none;
}

.product-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}

.product-info h1 {
	font-size: 24px;
	color: #333;
	margin: 0;
	font-weight: bold;
	position: relative;
	border-bottom: 1px solid #ddd;
}

.product-price {
	font-size: 20px;
	color: #e4393c;
	font-weight: bold;
}

.buy-now-button {
	background-color: #e4393c;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.buy-now-button:hover {
	background-color: #c82d2d;
	color: #fff;
}

.product-description {
	width: 100%;
	box-shadow: none;
	border-radius: 0;
}

.product-description h2 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #333;
	font-weight: bold;
	position: relative;
}

.product-description p {
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

footer {
	background-color: #2c3e50;
	color: #ecf0f1;
	text-align: center;
	padding: 10px 0;
	position: relative;
	width: 100%;
	bottom: 0;
	font-size: 14px;
	border-top: 1px solid #1a252f;
}

footer a {
	color: #ecf0f1;
	text-decoration: underline;
}
