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

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
		Arial, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #ffffff;
}

/* Header Navigation */
header {
	border-bottom: 1px solid #e5e5e5;
	padding: 1.5rem 0;
	position: sticky;
	top: 0;
	background-color: #ffffff;
	z-index: 100;
}

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

.logo {
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.5px;
	color: #1a1a1a;
	text-decoration: none;
}

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

.nav-links a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s;
	border-bottom: 2px solid transparent;
	padding-bottom: 0.25rem;
}

.nav-links a:hover {
	color: #666;
	border-bottom-color: #666;
}

/* Hero Section */
.hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6rem 2rem;
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
	line-height: 1.1;
}

.hero p {
	font-size: 1.3rem;
	color: #666;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.cta-group {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 0.75rem 2rem;
	border-radius: 6px;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.btn-primary {
	background-color: #1a1a1a;
	color: #ffffff;
}

.btn-primary:hover {
	background-color: #333;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	background-color: transparent;
	color: #1a1a1a;
	border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
}

/* Features Section */
.features {
	background-color: #f9f9f9;
	padding: 6rem 2rem;
	margin-top: 4rem;
}

.features-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}

.section-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 4rem;
	font-size: 1.1rem;
}

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

.feature-card {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 8px;
	border: 1px solid #e5e5e5;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: #1a1a1a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.feature-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

.feature-card.document-tile {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	text-decoration: none;
}

.feature-card.document-tile a {
	color: inherit;
	text-decoration: none;
}

.document-tile h3 {
	color: #0066cc;
}

.document-tile h3:hover {
	text-decoration: underline;
}

.document-date {
	font-size: 0.85rem;
	color: #999;
	margin-top: 0.75rem;
}

/* Stats Section */
.stats {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 4rem 2rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: #666;
	font-size: 1rem;
}

/* Footer */
footer {
	background-color: #f9f9f9;
	border-top: 1px solid #e5e5e5;
	padding: 3rem 2rem;
	margin-top: 4rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-section ul li a:hover {
	color: #1a1a1a;
}

.footer-bottom {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e5e5;
	color: #999;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

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

	.nav-links {
		gap: 1rem;
	}

	.nav-links a {
		font-size: 0.85rem;
	}

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

	.cta-group {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 480px) {
	nav {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-links {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.hero {
		padding: 3rem 1rem;
	}

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

	.features {
		padding: 3rem 1rem;
	}
}
