:root {
	--primary: #2563eb;
	--secondary: #0f766e;
	--bg-light: #f8fafc;
	--text: #0f172a;
	--text-light: #475569;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: var(--bg-light);
	color: var(--text);
	line-height: 1.6;
}

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

header {
	padding: 2rem 0;
	background-color: white;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.logo-full {
	font-size: 1rem;
	color: var(--text-light);
	margin-top: 0.5rem;
}

main {
	padding: 4rem 0;
}

.hero {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	text-align: center;
	margin-bottom: 4rem;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	max-width: 800px;
	margin: 0 auto;
}

.about-section {
	background-color: white;
	border-radius: 8px;
	padding: 3rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	margin-bottom: 4rem;
}

h2 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--secondary);
}

.about-text {
	font-size: 1.1rem;
	max-width: 800px;
}

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

.feature-card {
	background-color: white;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.feature-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--secondary);
}

.contact-section {
	background-color: white;
	border-radius: 8px;
	padding: 3rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info {
	margin-top: 2rem;
	margin-bottom: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-icon {
	color: var(--primary);
	font-size: 1.2rem;
}

footer {
	background-color: var(--text);
	color: white;
	padding: 2rem 0;
	margin-top: 4rem;
	text-align: center;
}

.copyright {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #94a3b8;
}

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

	h1 {
		font-size: 2rem;
	}

	.about-section,
	.contact-section {
		padding: 2rem;
	}
}