:root {
	--primary: #2563eb;
	--secondary: #1e40af;
	--text: #1f2937;
	--bg: #ffffff;
}

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

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: var(--text);
	line-height: 1.5;
}

.hero {
	background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
	padding: 2rem;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
    text-decoration: none;
}

.hero-content {
	max-width: 1200px;
	margin: 4rem auto;
	text-align: center;
}

.title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.subtitle {
	font-size: 1.25rem;
	color: #4b5563;
	margin-bottom: 2rem;
}

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

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

.feature-card {
	padding: 1.5rem;
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	cursor: pointer;
	border-radius: 0.375rem;
	background: var(--primary);
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s ease;
}

.btn:hover {
	background: var(--secondary);
}

.awards {
	background: #f8fafc;
	padding: 4rem 2rem;
	text-align: center;
}

.contact {
	max-width: 800px;
	margin: 4rem auto;
	padding: 2rem;
}

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

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

.form-input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.375rem;
	font-size: 1rem;
	transition: border-color 0.2s ease;
}

.form-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-info {
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid #e5e7eb;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 5%;
	background: var(--bg);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--primary);
	color: white;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

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

.btn-secondary {
	background: var(--light);
	color: var(--text);
}

.hero {
	padding: 6rem 5%;
	text-align: center;
	background: linear-gradient(rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.1));
}

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

.title {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text);
	line-height: 1.2;
}

.subtitle {
	font-size: 1.25rem;
	color: var(--gray);
	margin-bottom: 2rem;
}

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

section {
	padding: 5rem 5%;
}

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

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

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

.feature-card h3,
.app-card h3,
.premium-feature h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.awards {
	background: var(--light);
}

.awards-content {
	max-width: 800px;
	margin: 2rem auto;
	text-align: center;
}

.award-item {
	background: white;
	padding: 2rem;
	border-radius: 1rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.award-item h3 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 5%;
}

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

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text);
}

.form-input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	font-size: 1rem;
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-info {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}

.contact-item {
	margin: 1rem 0;
}

.contact-item a {
	color: var(--primary);
	text-decoration: none;
}

@media (max-width: 768px) {
	.title {
		font-size: 2.5rem;
	}

	.hero {
		padding: 4rem 5%;
	}

	.features-grid,
	.apps-grid,
	.premium-content {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
}
.toast {
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	color: white;
	font-weight: 500;
	animation: slideIn 0.3s ease-out, fadeOut 0.5s ease-out 2.5s forwards;
	z-index: 1000;
}

.toast-success {
	background-color: #10b981;
}

.toast-error {
	background-color: #ef4444;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		visibility: hidden;
	}
}
