body {
	margin: 0;
	padding: 0;
	font-family: 'Prompt', 'Kanit', Arial, sans-serif;
	background: #fff;
	color: #222;
}

.container {
	max-width: 480px;
	margin: 0 auto;
	min-height: 100vh;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.header {
	padding: 32px 0 16px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 16px;
}

.logo-img {
	width: 40px;
	height: 40px;
}

.logo-text {
	font-size: 2rem;
	font-weight: bold;
	color: #222;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.advice-card {
	background: linear-gradient(160deg, #3b5c5c 60%, #2e4a4a 100%);
	border-radius: 28px;
	padding: 24px 12px 24px 12px;
	margin: 0 12px;
	box-shadow: 0 4px 16px rgba(60, 90, 90, 0.10);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-top: 16px;
}

.advice-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.advice-icon {
	width: 56px;
	height: 56px;
	background: none;
}

.advice-title {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.1;
}

.advice-message {
	background: #fff;
	color: #222;
	border-radius: 20px;
	padding: 18px 16px;
	font-size: 1.1rem;
	margin-bottom: 24px;
	margin-top: 4px;
	box-shadow: 0 2px 8px rgba(60, 90, 90, 0.06);
	word-break: break-word;
}

.advice-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.advice-btn {
	background: #6ed0e6;
	color: #fff;
	font-size: 1.15rem;
	font-weight: bold;
	border: none;
	border-radius: 32px;
	padding: 14px 24px;
	margin: 0;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(60, 90, 90, 0.08);
	cursor: pointer;
	transition: background 0.2s;
}
.advice-btn:active, .advice-btn:focus {
	background: #4ec3d4;
}
.arrow {
	font-size: 1.5rem;
	font-weight: bold;
	margin-left: 8px;
}

@media (max-width: 600px) {
	.container {
		max-width: 100vw;
		padding: 0;
	}
	.advice-card {
		margin: 0 4px;
		padding: 18px 4px 18px 4px;
	}
	.logo-text {
		font-size: 1.4rem;
	}
	.advice-title {
		font-size: 1.3rem;
	}
	.advice-message {
		font-size: 1rem;
	}
	.advice-btn {
		font-size: 1rem;
		padding: 12px 12px;
	}
}
