body {
	font-family: 'Open Sans', sans-serif;
	color: #b61616;
	margin: 0;
	padding: 0;
	background: #f4f4f4;
	overflow-x: hidden;
}
header {
	background: #f4f4f4;
	padding: 1.7em 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-sizing: border-box;
}
nav {
	width: 100%;
	box-sizing: border-box;
}
.card {
	background: #fff;
	border: none;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
body {
	font-family: 'Open Sans', sans-serif;
	color: rgb(255 0 0);
	margin: P 0;
	padding: 0;
	background: #fbfbfbbd;
	overflow-x: hidden;
}
header {
	background: #f4f4f4;
	padding: 1.7em 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	box-sizing: border-box;
}
nav {
	width: 100%;
	box-sizing: border-box;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	width: fit-content;
}
nav ul li {
	display: inline;
	margin: 0 20px;
}
nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
	transition: color 0.3s ease;
}
nav ul li a:hover {
	color: #007bff;
}
.banner {
	background: url('../images/Get_Shein_Gift_Card.jpg') no-repeat center center/cover;
	color: #ffffff;
	text-align: center;
	padding: 60px 20px;
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
	box-sizing: border-box;
	border-radius: 20px;
}
main {
	padding: 20px;
}
h2 {
	text-align: center;
	color: #444;
	font-size: 2em;
	margin-bottom: 50px;
}
.card-container, .how-it-works-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 300px));
	gap: 20px;
	justify-content: center;
	padding: 0 15px;
	max-width: 960px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.card-container, .how-it-works-container {
		grid-template-columns: 1fr;
	}
}
.card {
	background: #fff;
	border: none;
	padding: 20px;
	text-align: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.952);
	border-radius: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	outline: 3px solid #d65cbc75;
}
.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px rgba(252, 135, 226, 0.3);
}
.card img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 15px;
}
.card h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.5em;
	color: #555;
}
.card p {
	font-size: 1em;
	color: #666;
}
.btn-get-now {
	background-color: #18a342;
	color: white;
	padding: 12px 30px;
	border-radius: 7px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
	border: 3px solid transparent;
}
.btn-get-now:hover {
	background-color: #f82fcd;
	box-shadow: 0 0 15px #ff11ff;
	border-color: rgb(220, 132, 255);
	border-width: 1.5px;
}
#how-it-works {
	background: #00a2ff00;
	padding: 40px 20px;
	text-align: center;
}
.how-it-works-step {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}
.how-it-works-step:hover {
	transform: translateY(-10px);
}
.how-it-works-step .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f4f4f4;
	color: white;
}
.how-it-works-step h3 {
	font-size: 1.4em;
	color: #555;
	margin: 10px 0;
}
.how-it-works-step p {
	font-size: 1em;
	color: #666;
}
footer {
	background: #222;
	color: #fff;
	text-align: center;
	padding: 20px;
	margin-top: 20px;
}
@media screen and (max-width: 768px) {
	.banner {
		padding: 30px 10px;
	}
	nav ul {
		display: block;
		text-align: center;
	}
	nav ul li {
		display: block;
		margin: 5px 0;
	}
	.banner h1 {
		font-size: 1.8em;
	}
	.banner p {
		font-size: 1em;
	}
	.card-container {
		grid-template-columns: 1fr;
	}
}
#faq {
	background: #cecece;
	padding: 40px 20px;
	text-align: center;
	border-radius: 27px;
	box-shadow: 0px 4px 20px rgba(51, 51, 51, 0.74);
}
.faq-container {
	margin: 20px auto;
	max-width: 960px;
}
.faq-question, .faq-answer {
	text-align: center;
	color: #272727;
}
.faq-item {
	margin-bottom: 10px;
}
.faq-question {
	background-color: #3D3D3D;
	color: rgb(21, 222, 236);
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	width: 80%;
	text-align:left;
	cursor: pointer;
	transition: background-color 0.3s;
}
.faq-question:hover {
	background-color: #565656;
}
.faq-answer {
	padding: 10px 20px;
	display: none;
	background-color: #ffffff;
	border-radius: 10px;
	margin-top: 10px;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.menu-icon {
	display: none;
	cursor: pointer;
}
.menu-icon span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 5px 0;
}
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
	display: flex;
	justify-content: center;
}
nav ul li {
	display: inline;
	margin: 0 20px;
}
@media screen and (max-width: 768px) {
	.menu-icon {
		display: block;
		position: absolute;
		right: 20px;
		top: 20px;
	}
	nav ul {
		flex-direction: column;
		display: none;
		position: absolute;
		background-color: #fff;
		top: 60px;
		right: 0;
		width: 100%;
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	}
	nav ul li {
		display: block;
		margin: 10px 0;
		text-align: center;
	}
	nav ul li a {
		padding: 10px 20px;
		display: block;
	}
}
.icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #007bff;
	color: white;
}
.icon-card {
	background-image: url('../images/1.png');
}
.icon-payment {
	background-image: url('../images/2.png');
}
.icon-delivery {
	background-image: url('../images/3.png');
}
footer {
	background: #222;
	color: #fff;
	text-align: center;
	padding: 20px 0;
}
.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.footer-links li {
	margin: 0 10px;
}
.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-links a:hover {
	color: #007bff;
}
@media screen and (max-width: 768px) {
	.footer-links {
		flex-direction: column;
		margin-top: 10px;
	}
	.footer-links li {
		margin-bottom: 5px;
	}
}
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-content {
	position: relative;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 25px;
	cursor: pointer;
}
#progress-container {
	width: 100%;
	background-color: #eee;
	margin-top: 20px;
}
#progress-bar {
	height: 20px;
	background-color: #007bff;
	width: 0%;
}
#progress-status {
	margin-top: 10px;
	color: #333;
	font-size: 16px;
}
.status-success {
	color: green;
}
.survey-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10000;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	padding: 20px;
	max-width: 90%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.popup-content.blur {
	filter: blur(5px);
}
.btn-unlock {
	background-color: #2de264;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s;
}
.btn-unlock:hover {
	background-color: #02afff;
}
.code-style {
	font-family: 'Courier New', monospace;
	font-size: 20px;
	color: #333;
	margin-bottom: 10px;
}
.content-section {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border-radius: 10px;
	margin-bottom: 20px;
}
.content-section h1 {
	color: #333;
	font-size: 2em;
	margin-bottom: 20px;
}
.content-section h2 {
	color: #444;
	font-size: 1.5em;
	margin-top: 20px;
}
.content-section h3 {
	color: #555;
	font-size: 1.3em;
	margin-top: 15px;
}
.content-section p, .content-section ul {
	color: #666;
	font-size: 1em;
	line-height: 1.6;
}
.content-section ul {
	list-style-type: disc;
	margin-left: 20px;
}
.contact-info {
	text-align: center;
	margin-bottom: 40px;
}
.contact-info p {
	font-size: 1em;
	color: #666;
}
.contact-form {
	max-width: 500px;
	margin: 0 auto;
}
.contact-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}
.contact-form input[type="text"],.contact-form input[type="email"],.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.contact-form textarea {
	height: 150px;
	resize: vertical;
}
.submit-btn {
	background-color: #3D3D3D;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1em;
	transition: background-color 0.3s;
}
#generated-code {
    color: black;
}
.submit-btn:hover {
	background-color: #565656;
}
#code-message {
    color: #000000;
}
