* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
	pointer-events: none;
	animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 0.8; }
}

.container {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 40px;
	background: rgba(30, 60, 114, 0.6);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
				inset 0 0 20px rgba(59, 130, 246, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

h1 {
	text-align: center;
	color: #ffffff;
	margin-top: 8px;
	margin-bottom: 12px;
	font-size: 2.8rem;
	font-weight: 800;
	text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
				 0 4px 10px rgba(0, 0, 0, 0.5);
	letter-spacing: 1px;
}

.logo-image {
	display: block;
	max-width: 500px;
	width: 100%;
	height: auto;
	margin: 0 auto 16px;
	filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1))
			drop-shadow(0 0 20px rgba(59, 130, 246, 0.8))
			drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
	animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
	0%, 100% {
		filter: drop-shadow(0 0 30px rgba(139, 92, 246, 1))
				drop-shadow(0 0 20px rgba(59, 130, 246, 0.8))
				drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
	}
	50% {
		filter: drop-shadow(0 0 45px rgba(139, 92, 246, 1))
				drop-shadow(0 0 35px rgba(59, 130, 246, 1))
				drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
	}
}

.subtitle {
	text-align: center;
	color: #e0e7ff;
	margin-top: 16px;
	margin-bottom: 50px;
	font-size: 1.2rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.last-updated {
	text-align: center;
	color: #e0e7ff;
	margin-bottom: 40px;
	font-size: 0.95rem;
	font-style: italic;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.content {
	color: #ffffff;
	line-height: 1.8;
}

.items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.item-card {
	background: rgba(59, 130, 246, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 0px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.item-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
	opacity: 0;
	transition: all 0.4s ease;
}

.item-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.item-card:hover {
	transform: translateY(-8px) scale(1.02);
	background: rgba(59, 130, 246, 0.35);
	border-color: rgba(187, 204, 255, 0.8);
	box-shadow: 0 15px 35px rgba(187, 204, 255, 0.5),
				0 0 30px rgba(187, 204, 255, 0.3),
				inset 0 0 15px rgba(187, 204, 255, 0.2);
}

.item-card:hover::before {
	opacity: 1;
	animation: rotate 3s linear infinite;
}

.item-card:hover::after {
	left: 100%;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.item-card.selected {
	background: rgba(139, 92, 246, 0.4);
	border-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6),
				inset 0 0 20px rgba(139, 92, 246, 0.3);
}

.item-card.selected::after {
	content: '✓';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.6);
	animation: checkPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 10;
}

@keyframes checkPop {
	0% {
		transform: scale(0) rotate(-180deg);
	}
	60% {
		transform: scale(1.3) rotate(10deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
	}
}

.item-icon {
	font-size: 3rem;
	margin: 20px 30px 16px 30px;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
	transition: transform 0.3s ease;
}

.item-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	margin-bottom: 0px;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.7))
			drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
	transition: all 0.3s ease;
}

.item-card:hover .item-image {
	transform: scale(1.05);
	filter: drop-shadow(0 0 25px rgba(139, 92, 246, 1))
			drop-shadow(0 0 20px rgba(59, 130, 246, 0.8))
			drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.item-card:hover .item-icon {
	transform: scale(1.1) rotate(5deg);
}

.item-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #ffffff;
	margin: 10px 30px;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.item-description {
	color: #e0e7ff;
	margin: 10px 30px;
	font-size: 0.98rem;
	line-height: 1.6;
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 350px;
	text-align: center;
	margin: 40px auto 0;
	padding: 18px 36px;
	background: linear-gradient(135deg, #3b82f6 0%, #2a5298 100%);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(187, 204, 255, 0.5),
				inset 0 -2px 10px rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
	width: 350px;
	height: 300px;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 35px rgba(187, 204, 255, 0.7),
				inset 0 -2px 10px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.6);
}

.cta-button:active {
	transform: translateY(-1px);
}

.cta-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.cta-button span {
	position: relative;
	z-index: 1;
}

.section {
	margin: 0px 20px 35px 20px;
}

.section h2 {
	color: #ffffff;
	font-size: 1.6rem;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	text-shadow: 0 0 15px rgba(139, 92, 246, 0.6),
				 0 2px 8px rgba(0, 0, 0, 0.4);
	font-weight: 700;
}

.section p {
	text-align: justify;
	margin-bottom: 16px;
	font-size: 1.05rem;
	color: #e0e7ff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section ul {
	margin-left: 25px;
	margin-bottom: 16px;
}

.section li {
	text-align: justify;
	margin-bottom: 10px;
	font-size: 1.05rem;
	color: #e0e7ff;
	line-height: 1.7;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer {
	margin-top: 50px;
	padding-top: 34px;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin-bottom: 21px;
}

.social-links img {
	width: 25px;
	height: 25px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(59, 130, 246, 0.3);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	text-decoration: none;
	font-size: 1.3rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	transform: translateY(-4px) scale(1.15);
	background: rgba(187, 204, 255, 0.6);
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 20px rgba(187, 204, 255, 0.5),
				0 0 20px rgba(187, 204, 255, 0.4);
}

.footer-nav {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: 25px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.footer-nav a {
	color: #e0e7ff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 10px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-nav a:hover {
	color: #ffffff;
	background: rgba(187, 204, 255, 0.4);
	transform: translateY(-2px);
}

.footer-nav a:hover::before {
	width: 80%;
}

.copyright {
	color: #e0e7ff;
	font-size: 0.9rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

a:link, a:visited, a:active {
	color: #e0e7ff;
	text-decoration: none;
}

a:hover {
	color: #fff;
}

.success-message {
	display: none;
	background: rgba(34, 197, 94, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(34, 197, 94, 0.5);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 24px;
	color: #ffffff;
	text-align: center;
	animation: slideDown 0.4s ease;
}

.success-message.show {
	display: block;
}

.error-message {
	display: none;
	background: rgba(255, 0, 0, 0.75);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 0, 0, 0.5);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 24px;
	color: #ffffff;
	text-align: center;
	animation: slideDown 0.4s ease;
}

.error-message.show {
	display: block;
}

.form-content {
	color: #ffffff;
	line-height: 1.8;
	max-width: 700px;
	margin: auto;
}

.contact-form {
	margin-top: 30px;
}

.form-group {
	margin-bottom: 24px;
	position: relative;
}

.form-group label {
	display: block;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 1.05rem;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	background: rgba(59, 130, 246, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #ffffff;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(224, 231, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: rgba(59, 130, 246, 0.3);
	border-color: rgba(187, 204, 255, 0.8);
	box-shadow: 0 0 0 4px rgba(187, 204, 255, 0.2),
				0 0 20px rgba(187, 204, 255, 0.4),
				inset 0 2px 8px rgba(187, 204, 255, 0.2);
	transform: translateY(-2px);
}

.form-group input:focus + .focus-glow,
.form-group textarea:focus + .focus-glow {
	opacity: 1;
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
	line-height: 1.6;
}

.form-group input:hover,
.form-group textarea:hover {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(59, 130, 246, 0.25);
}

.char-count {
	position: absolute;
	bottom: -22px;
	right: 0;
	font-size: 0.85rem;
	color: #e0e7ff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.honeypot {
	display: none;
}

.g-recaptcha {
	display: flex;
	justify-content: center;
}

.recaptcha-wrap {
	margin-bottom: 24px;
	filter: invert(0.85) hue-rotate(180deg);
	border-radius: 4px;
	overflow: hidden;
}

.field-error {
	display: none;
	justify-content: center;
	margin: -28px 0px 16px -100px;
	font-size: 0.9rem;
	color: #d95f5f;
}

.field-error.show {
	display: flex;
}

@media (max-width: 768px) {
	.container {
		padding: 32px 24px;
	}

	h1 {
		font-size: 2.2rem;
	}

	.logo-image {
		max-width: 400px;
	}

	.section h2 {
		font-size: 1.4rem;
	}

	.section p,
	.section li {
		font-size: 1rem;
		text-align: left;
	}

	.subtitle {
		font-size: 1.05rem;
		margin-bottom: 40px;
	}

	.items-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.item-icon {
		font-size: 2.5rem;
	}

	.item-title {
		font-size: 1.25rem;
	}

	.cta-button {
		font-size: 1.05rem;
		padding: 16px 32px;
	}

	.footer-nav {
		gap: 2px;
	}

	.footer-nav a {
		font-size: 0.95rem;
		padding: 6px 10px;
	}
}

@media (max-width: 480px) {
	body {
		padding: 20px 10px;
	}

	.container {
		padding: 30px 18px;
		border-radius: 16px;
	}

	h1 {
		font-size: 1.9rem;
	}

	.logo-image {
		max-width: 280px;
	}

	.section h2 {
		font-size: 1.25rem;
	}

	.subtitle {
		font-size: 1rem;
		margin-bottom: 36px;
	}

	.item-icon {
		font-size: 2.2rem;
	}

	.section p,
	.section li {
		font-size: 0.95rem;
	}

	.social-links a {
		width: 42px;
		height: 42px;
		font-size: 1.15rem;
	}

	.footer-nav {
		gap: 0px;
	}

	.footer-nav a {
		font-size: 0.9rem;
		padding: 5px 10px;
	}
	
	.g-recaptcha {
		transform: scale(0.80);
		-webkit-transform: scale(0.80);
	}
}