* { 
	box-sizing: border-box; 
	margin: 0;
	padding: 0;
}

body {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	font-family: 'Roboto', Arial, sans-serif;
	padding: 15px;
	min-height: 100vh;
}

.page-header {
	background: rgba(193, 255, 255, 0.95);
	max-width: 1200px;
	margin: 0 auto 20px;
	padding: 25px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.page-header h1 {
	color: #333;
	font-size: 28px;
	margin-bottom: 8px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.page-header h1 img {
	height: 60px;
	width: auto;
}

.page-header h2 {
	color: #666;
	font-size: 16px;
	font-weight: 400;
}

.instruction-text {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	max-width: 1200px;
	margin: 0 auto 20px;
	padding: 12px 20px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 14px;
	color: #fff;
	text-align: center;
}

.menu-wrapper {
	background: rgba(198, 255, 255, 0.98);
	padding: 0;
	margin: 0 auto 20px;
	max-width: 1200px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

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

.nav > li {
	flex: 0 0 auto;
}

.nav > li > a {
	display: block;
	padding: 30px 35px;
	color: #333;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.nav > li:hover > a {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.content-section {
	background: rgba(255, 255, 255, 0.98);
	padding: 30px 40px;
	margin: 0 auto 20px;
	max-width: 1200px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.content-section h1 {
	color: #FFFACD;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 20px;
	border-radius: 8px;
}

.content-section h2 {
	color: #333;
	font-size: 18px;
	line-height: 1.6;
	font-weight: 400;
}

.return-link {
	background: rgba(255, 255, 255, 0.98);
	margin: 0 auto 30px;
	max-width: 1200px;
	padding: 15px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.return-link h1 {
	font-size: 18px;
	margin: 0;
}

.return-link a {
	color: #13bf47 !important;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.return-link a:hover {
	color: #c82333 !important;
	transform: scale(1.05);
}

.footer-links {
	background: rgba(193, 255, 193, 0.95);
	margin: 0 auto 20px;
	max-width: 1200px;
	padding: 15px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.footer-links span {
	font-size: 14px;
	color: #333;
	display: block;
}

.footer-links a {
	color: #667eea !important;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.footer-links a:hover {
	color: #764ba2 !important;
}

/* Mobile styles */
@media (max-width: 768px) {
	body {
		padding: 10px;
	}

	.page-header {
		padding: 20px 15px;
	}

	.page-header h1 {
		font-size: 22px;
		gap: 20px;
	}

	.page-header h1 img {
		height: 40px;
	}

	.page-header h2 {
		font-size: 13px;
	}

	.instruction-text {
		display: none;
	}

	.nav {
		flex-direction: column;
	}

	.nav > li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav > li:last-child {
		border-bottom: none;
	}

	.nav > li > a {
		padding: 15px 20px;
		font-size: 15px;
	}

	.content-section {
		padding: 20px;
	}

	.content-section h1 {
		font-size: 20px;
		padding: 15px;
	}

	.content-section h2 {
		font-size: 16px;
	}

	.return-link h1 {
		font-size: 16px;
	}
}

/* Small mobile styles */
@media (max-width: 480px) {
	.page-header h1 {
		font-size: 20px;
		gap: 15px;
	}

	.page-header h1 img {
		height: 35px;
	}

	.page-header h2 {
		font-size: 12px;
	}

	.nav > li > a {
		font-size: 14px;
		padding: 12px 15px;
	}

	.content-section h1 {
		font-size: 18px;
	}

	.content-section h2 {
		font-size: 14px;
	}
}
