
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.about-page {
	padding: 60px 0;
}

.hero-section {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
	border-radius: 2px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
	animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255,255,255,0.9);
	max-width: 600px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 80px;
	margin-bottom: 80px;
}

.content-card {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
	background-size: 300% 300%;
	animation: gradientShift 4s ease infinite;
}

.content-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.card-icon {
	font-size: 3rem;
	color: #667eea;
	margin-bottom: 20px;
	display: block;
}

.card-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.card-text {
	color: #666;
	line-height: 1.8;
	font-size: 1.1rem;
}

.stats-section {
	background: white;
	border-radius: 25px;
	padding: 60px 40px;
	margin-bottom: 80px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	animation: fadeInUp 1s ease-out 0.6s both;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #667eea;
	display: block;
	margin-bottom: 10px;
	animation: countUp 2s ease-out 1s both;
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
	font-weight: 500;
}

.mission-section {
	text-align: center;
	background: rgba(255,255,255,0.95);
	border-radius: 25px;
	padding: 60px 40px;
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	animation: fadeInUp 1s ease-out 0.8s both;
}

.mission-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 30px;
}

.mission-text {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

.floating-elements {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.floating-element {
	position: absolute;
	opacity: 0.1;
	animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.floating-element:nth-child(2) {
	top: 60%;
	right: 10%;
	animation-delay: -7s;
}

.floating-element:nth-child(3) {
	bottom: 20%;
	left: 20%;
	animation-delay: -14s;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes float {
	0% { transform: translateY(0px) rotate(0deg); }
	33% { transform: translateY(-20px) rotate(120deg); }
	66% { transform: translateY(10px) rotate(240deg); }
	100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes countUp {
	from { opacity: 0; transform: scale(0.5); }
	to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.content-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.content-card {
		padding: 30px;
	}
	
	.stats-section,
	.mission-section {
		padding: 40px 20px;
		margin: 0 10px 60px 10px;
	}
}
 