* {
margin: 0;
padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;;
	-webkit-font-smoothing: antialiased;
}

header {
	background-color: #E83D3D;
	color: #FFF;
	font-size:32px;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
}

h1 {
	font-size: 39px;
	font-weight: 400;
	line-height: 50px;
	margin-bottom: 10px;
}

h2 {
	font-size: 21px;
	font-weight: 400;
}

footer {
	max-width: 1080px;
	border-top: 1px solid #000;
	margin: 0 auto;
	text-align: justify;
	font-size: 14px;
	line-height: 20px;
	padding: 18px 0 40px;
	margin-top: 96px;
}

.survey-container {
	max-width: 840px;
	margin: 0 auto;
	padding: 40px 16px;
	box-sizing: border-box;
	text-align: center;
}

.question-container {
	text-align: center;
	margin: 20px 0;
	padding: 10px 0;
}

.question-container p {
	font-weight: 700;
	font-size: 1.7em;
}

.message-container {
	text-align: center;
	margin: 0;
}

.message-container h2 {
		font-weight: 700;
		font-size: 1.7em;
		margin-bottom: 6px;
}

.answer-btn {
	display: block;
	width: 85%;
	margin: 10px auto;
	font-size: 1.5rem;
	padding: 15px 20px;
	font-weight: 700;
	background-color: #2C88D9;
	color: white;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s;
}

.answer-btn:hover {
	background-color: #4597DE;
}

.offer-wall {
	margin-top: 20px;
}

.offer {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
}

.offer-image {
	flex-basis: 33%;
	padding-right: 20px;
}

.offer-image img {
	width: 80%;
	height: auto;
}

.offer-details {
	flex-basis: 66%;
	text-align: left;
	width: 100%;
}

.offer-details h3 {
	font-size: 22px;
}

.rating-container {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
}

.rating-stars {
	width: 100%;
	max-width: 80px;
	height: auto;
	margin-right: 6px;
}

.rating-value {
	font-size: 0.9em; 
	font-weight: 500;
	margin-right: 3px;
}

.total-ratings {
	font-size: 0.7em; 
	color: #666;
}

.claim-btn {
	display: block;
	margin: 10px auto;
	font-size: 1.4rem;
	padding: 10px 20px;
	font-weight: 700;
	background-color: #2C88D9;
	color: white;
	text-align: center;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s;
}

.claim-btn:hover {
	background-color: #4597DE;
}

.congratulations {
	background: #FFF4A4;
	border-radius: 8px;
	padding: 12px;
}

.bold {
	font-weight: 700;
}

.orange {
	color: #E83D3D;
}

.underline {
	text-decoration: underline;
}

@media (max-width: 576px) {
	header {font-size: 22px;line-height: 32px;}
  	h1 {font-size: 26px;line-height: 32px;}
	h2 {font-size: 18px;}
	.survey-container {padding-top: 20px;}
	.offer {
		flex-direction: column;
		align-items: start;
	}
	
	.offer-image {
		flex-basis: auto;
		padding-right: 0;
		text-align: center;
		margin-bottom: 16px;
		width: 100%;
	}
	
	.offer-details {
		flex-basis: auto;
	}
}
