.gxs-container {
	background: #fcfcfc;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBmaWxsPSIjZjJmMmYyIiBvcGFjaXR5PSIwLjUiPjxnPjxwYXRoIGQ9Ik01MCwwIEM2MCwyNSA0MCwyNSA1MCw1MCBDNjAsNzUgNDAsNzUgNTAsMTAwIiBzdHJva2U9IiNjY2MiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIvPjwvZz48L3N2Zz4=');
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	max-width: 600px;
	margin: 0 auto;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.gxs-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15); /* Teal shadow on hover */
	border-color: #27ae60; /* Teal border on hover */
}

.gxs-product-name {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	font-size: 16px;
	color: #28a745;
}

.gxs-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.gxs-desc {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
	color: #555;
}

.gxs-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
	text-align: left;
	display: inline-block;
}

.gxs-features li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	color: #444;
}

.gxs-features li::before {
	content: "•";
	color: #28a745;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
}

.gxs-footer {
	margin-top: 10px;
}

.gxs-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
	padding: 12px 24px;
	border-radius: 50px;
	background-color: #28a745;
	color: #fff;
}

.gxs-btn:hover {
	background-color: #218838;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.gxs-title {
		font-size: 24px;
	}
}
