* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header &amp; Navigation */
header {
	background-color: var(--bg-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1543352634-a1c51d9f1fa7?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1350&amp;q=80') no-repeat center center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 100px 0;
	margin-top: 60px;
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	color: var(--text-color);
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.2rem;
	color: #666;
	max-width: 800px;
	margin: 0 auto 40px;
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	margin-left: 15px;
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
}

/* Features Section */
.features {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.section-title {
	font-family: var(--font-heading);
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
	color: var(--text-color);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.feature-card {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.feature-card h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
	padding: 100px 0;
}

.steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.step {
	flex: 0 0 30%;
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 15px;
}

/* Pricing */
.pricing {
	padding: 100px 0;
	background-color: var(--light-bg);
}

.pricing-plans {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.pricing-card {
	background: white;
	border-radius: 10px;
	padding: 40px 30px;
	flex: 0 0 300px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s;
}

.pricing-card:hover {
	transform: scale(1.05);
}

.pricing-card.featured {
	border: 2px solid var(--primary-color);
	transform: scale(1.05);
}

.pricing-card h3 {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.price {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}

.price span {
	font-size: 1rem;
	color: #666;
}

.pricing-features {
	margin-bottom: 30px;
	padding: 0;
	list-style-type: none;
}

.pricing-features li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

/* Footer */
footer {
	background-color: #333;
	color: white;
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-column h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.copyright {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #555;
	color: #999;
}

.google-button-fallback { 
	background-color: var(--primary-light);
	width: 100%;
	display: inline-flex;
	align-content: center;
	justify-content: center; 
	padding: 26px;
}


/* Responsive Styles */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.nav-links {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.nav-links.active {
		display: flex;
	}

	.menu-toggle {
		display: block;
	}

	.steps {
		flex-direction: column;
		gap: 40px;
	}

	.step {
		flex: 0 0 100%;
	}
}