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

:root {
	--primary-yellow: #FFD700;
	--secondary-yellow: #FFC700;
	--dark: #1a1a1a;
	--light: #ffffff;
	--gray-text: #4b5563;
	--gray-light: #6b7280;
	--gray-bg: #f3f4f6;
	--gray-border: #e5e7eb;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--dark);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--light);
	color: var(--dark);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
}

/* Navigation */
.navbar {
	background: var(--light);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}

.logo-space {
	flex-shrink: 0;
}

.logo-placeholder {
	width: 100px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--dark);
	font-size: 0.875rem;
	box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-link {
	color: var(--gray-text);
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-yellow);
}

.nav-link.active {
	color: var(--primary-yellow);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--primary-yellow);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
	color: var(--dark);
	padding: 6rem 2rem;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Buttons */
.btn {
	 
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
}

.btn-primary {
	background: var(--primary-yellow);
	color: var(--dark);
}

.btn-primary:hover {
	background: var(--secondary-yellow);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
	background: rgba(0, 0, 0, 0.1);
	color: var(--dark);
	border: 2px solid var(--dark);
}

.btn-secondary:hover {
	background: var(--dark);
	color: var(--primary-yellow);
}

/* Features Section */
.features,
.stats {
	padding: 5rem 2rem;
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--light);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;

		display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	color: var(--dark);
}

.feature-card p {
	color: var(--gray-text);
	margin: 0;
}

/* Stats Section */
.stats {
	background: var(--light);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 3rem;
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-yellow);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--gray-text);
	font-size: 1.125rem;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
	color: var(--dark);
	padding: 4rem 2rem;
	text-align: center;
}

.page-header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	font-size: 1.25rem;
	opacity: 0.95;
}

/* About Page */
.about-intro {
	padding: 5rem 0 3rem;
	text-align: center;
}

.intro-content {
	max-width: 800px;
	margin: 0 auto;
}

.intro-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.intro-content p {
	font-size: 1.125rem;
	color: var(--gray-text);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.values-section {
	padding: 5rem 0;
}

.values-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.value-card {
	padding: 2rem;
	border: 2px solid var(--gray-border);
	border-radius: 12px;
	transition: all 0.3s;
	text-align: center;
}

.value-card:hover {
	border-color: var(--primary-yellow);
	transform: translateY(-4px);
}

.value-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary-yellow);
	text-align: center;
}

.value-card p {
	color: var(--gray-text);
	margin: 0;
	text-align: center;
}

.mission-section {
	background: var(--gray-bg);
	padding: 5rem 0;
	text-align: center;
}

.mission-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.mission-section p {
	font-size: 1.25rem;
	color: var(--gray-text);
}

/* Services Page */
.services-section {
	padding: 5rem 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.service-card {
	background: var(--light);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--dark);
	text-align: center;
}

.service-card p {
	color: var(--gray-text);
	margin-bottom: 1.5rem;
	line-height: 1.6;
	text-align: center;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-features li {
	color: var(--gray-light);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-yellow);
	font-weight: 700;
}

.cta-section {
	background: linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-border) 100%);
	padding: 5rem 2rem;
	text-align: center;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.25rem;
	color: var(--gray-text);
	margin-bottom: 2rem;
}

/* Team Page */
.team-intro {
	padding: 5rem 0 3rem;
	text-align: center;
}

.team-intro h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.team-intro p {
	font-size: 1.125rem;
	color: var(--gray-text);
	line-height: 1.8;
}

.team-section {
	padding: 3rem 0 5rem;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
	color: var(--dark);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.team-member {
	text-align: center;
}

.member-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	transition: transform 0.3s;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.team-member:hover .member-image {
	transform: scale(1.05);
}

.team-member h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.role {
	color: var(--primary-yellow);
	font-weight: 600;
	margin-bottom: 1rem;
}

.bio {
	color: var(--gray-light);
	line-height: 1.6;
	margin: 0;
}

.collaborators-section {
	background: var(--light);
	padding: 5rem 0;
	border-top: 1px solid var(--gray-border);
}

.collaborators-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.collaborator {
	text-align: center;
	padding: 2rem;
}

.collaborator-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	transition: transform 0.3s;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.collaborator:hover .collaborator-image {
	transform: scale(1.05);
}

.collaborator h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.collaborator p {
	color: var(--gray-light);
	line-height: 1.6;
	margin: 0;
}

.join-section {
	background: linear-gradient(135deg, var(--gray-bg) 0%, var(--gray-border) 100%);
	padding: 5rem 2rem;
	text-align: center;
}

.join-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.join-section p {
	font-size: 1.25rem;
	color: var(--gray-text);
	margin-bottom: 2rem;
}

/* Contact Page */
.contact-section {
	padding: 5rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--dark);
}

.intro-text {
	color: var(--gray-text);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.info-items {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-item {
	display: flex;
	gap: 1.5rem;
}

.info-item h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: var(--dark);
}

.info-item p {
	color: var(--gray-light);
	margin: 0.25rem 0;
}

.contact-form-wrapper {
	background: var(--light);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--dark);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #374151;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--gray-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-yellow);
}

.form-group textarea {
	resize: vertical;
}

.map-section {
	padding: 0 0 5rem;
}

.map-placeholder {
	background: linear-gradient(135deg, var(--gray-border) 0%, #d1d5db 100%);
	border-radius: 12px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-placeholder p {
	font-size: 1.5rem;
	color: var(--gray-light);
	font-weight: 600;
}

/* Footer */
.footer {
	background: var(--dark);
	color: var(--light);
	padding: 2rem;
	text-align: center;
}

.footer p {
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-links {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.features h2,
	.values-section h2,
	.mission-section h2,
	.page-header h1,
	.cta-section h2,
	.join-section h2 {
		font-size: 2rem;
	}

	.features-grid,
	.values-grid,
	.services-grid {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

	.collaborators-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 1rem;
	}

	.hero {
		padding: 3rem 1rem;
	}

	.nav-container {
		padding: 1rem;
	}

	.nav-container,
	.nav-links {
		gap: 0.5rem;
	}

	.logo-placeholder {
		width: 80px;
		height: 40px;
		font-size: 0.75rem;
	}

	.page-header {
		padding: 2rem 1rem;
	}

	.page-header h1 {
		font-size: 1.5rem;
	}

	.page-header p {
		font-size: 1rem;
	}

	.services-grid {
		gap: 1.5rem;
	}

	.service-card {
		padding: 1.5rem;
	}


