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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(360deg, #EEF1FF 0%, var(--white) 100%);
	color: #333;
	line-height: 1.6;
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.header {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInDown 0.8s ease;
}

.header h1 {
	font-size: 3rem;
	color: #fff;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header p {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.9);
}

.section-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: fadeInUp 0.8s ease;
	animation-fill-mode: both;
}

.section-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.section-card:nth-child(1) { animation-delay: 0.1s; }
.section-card:nth-child(2) { animation-delay: 0.2s; }
.section-card:nth-child(3) { animation-delay: 0.3s; }
.section-card:nth-child(4) { animation-delay: 0.4s; }
.section-card:nth-child(5) { animation-delay: 0.5s; }
.section-card:nth-child(6) { animation-delay: 0.6s; }

.section-title {
	font-size: 2rem;
	color: #0d0d0e;
	margin-bottom: 20px;
	align-items: center;
	gap: 15px;
}

.section-title::before {
	content: '';
	width: 5px;
	height: 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
}

.section-content {
	color: #555;
	font-size: 1.05rem;
	line-height: 1.8;
}

.icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.contact-email {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: #764ba2;
	text-decoration: underline;
}

.footer {
	text-align: center;
	padding: 30px 20px;
	color: rgba(255,255,255,0.9);
	font-size: 0.95rem;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.header h1 {
		font-size: 2rem;
	}

	.section-card {
		padding: 25px;
	}

	.section-title {
		font-size: 1.5rem;
	}
}