/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.about-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 2rem;
}

.about-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.about-title {
	font-size: 2.5rem;
	color: #2a3c54;
	margin-bottom: 1rem;
}

.about-description {
	color: #666;
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto;
}

.about-section {
	margin-bottom: 4rem;
	padding: 2rem;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.about-section:hover {
	transform: translateY(-5px);
}

.section-title {
	color: #2a3c54;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-title i {
	color: #2196f3;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: #2196f3;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: #666;
	font-size: 1.1rem;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.team-member {
	text-align: center;
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.team-member:hover {
	transform: translateY(-5px);
}

.member-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 1rem;
	border: 4px solid #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-name {
	color: #2a3c54;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.member-position {
	color: #666;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-link {
	color: #666;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #2196f3;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.value-item {
	text-align: center;
	padding: 2rem;
	background: #f8f9fa;
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.value-item:hover {
	transform: translateY(-5px);
}

.value-icon {
	font-size: 2.5rem;
	color: #2196f3;
	margin-bottom: 1rem;
}

.value-title {
	color: #2a3c54;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.value-description {
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
}

/* Tools Categories Section Styles */
.tools-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.category {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
}

.category:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.category-icon {
	font-size: 3rem;
	color: #2196f3;
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.category:hover .category-icon {
	transform: scale(1.1);
}

.category h3 {
	color: #2a3c54;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.category p {
	color: #666;
	font-size: 1rem;
	line-height: 1.6;
}

/* Commitment Section Styles */
.about-section a {
	color: #2196f3;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.about-section a:hover {
	color: #0c7cd5;
	text-decoration: underline;
}

.about-description + .about-description {
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.about-container {
		margin: 1rem;
		padding: 1rem;
	}

	.about-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.7rem;
	}

	.team-grid, .values-grid, .stats-grid, .tools-categories {
		grid-template-columns: 1fr;
	}

	.about-section {
		padding: 1.5rem;
	}

	.member-image {
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 480px) {
	.about-container {
		padding: 1rem 0.5rem;
	}

	.about-section {
		padding: 1.2rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.value-item, .category {
		padding: 1.5rem;
	}

	.section-title {
		font-size: 1.5rem;
	}
}