body {
	background-color: #F9FAFB;
}

/* top hero */
.taskstax-hero {
	background: linear-gradient(to right, #4338ca, #3b82f6);
	color: #fff;
	padding: 5rem 1.5rem;
	text-align: center;
}

.hero-container {
	max-width: 900px;
	margin: 0 auto;
}

.taskstax-hero h1 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.hero-tagline {
	font-size: 1.7rem;
	font-weight: 400;
	max-width: 700px;
	margin: 0 auto 2rem;
	color: #e0e7ff;
}

.hero-tagline-demo {
	font-size: 1.7rem;
	font-weight: 400;
	max-width: 700px;
	margin: 0 auto 2rem;
	color: orange;
}

.hero-cta {
	display: inline-block;
	background-color: white;
	color: #4f46e5;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.3s;
}

	.hero-cta:hover {
		background-color: #f1f5f9;
	}


div.indexdemo {
	position: relative;
	border-top: 1px solid #CCC;
	text-align: center;
	border-bottom: 1px solid #CCC;
}


.hero-content {
	display: flex;
	flex-wrap: wrap;
	max-width: 1300px;
	width: 100%;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.hero-text {
	flex: 1 1 400px;
}

	.hero-text h1 {
		font-size: 2.75rem;
		margin-bottom: 1rem;
		line-height: 1.2;
	}

	.hero-text p {
		font-size: 1.125rem;
		line-height: 1.6;
		margin-bottom: 1.5rem;
	}

.cta-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: #3b82f6;
	color: white;
	border-radius: 0.5rem;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

	.cta-button:hover {
		background-color: #2563eb;
	}

.hero-video {
	flex: 1 1 500px;
	display: flex;
	justify-content: center;
	padding: 2rem 2rem;
}

	.hero-video video {
		width: 100%;
		max-width: 800px;
		height: auto;
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
		border-radius: 0.75rem;
	}














img.indeximage {
	position: relative;
	width: 90%;
}

div.footer {
	position: relative;
	top:10px;
	margin-bottom:20px;
}


.cookiebanner {
	position: fixed;
	height:50px;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: white;
	color: white;
	padding: 7px;
	text-align: center;
	font-size: 14px;
	display: none; /* Initially hidden */
	z-index: 1000;
	border: 1px solid #CCC;
}

p.cookietext {
	color:black;
}

p.organized {
	font-size:23pt;
	color: #6a5acd;
}




/* Notizon Bottom Hero Section */
.taskstax-bottom-hero {
	background: linear-gradient(to right, #4338ca, #3b82f6);
	color: white;
	padding: 4rem 1.5rem;
	text-align: center;
}

.bottom-hero-container {
	max-width: 800px;
	margin: 0 auto;
}

.taskstax-bottom-hero h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.bottom-hero-tagline {
	font-size: 1.7rem;
	color: #e0e7ff;
	margin-bottom: 2rem;
}

.bottom-cta {
	display: inline-block;
	background-color: #ffffff;
	color: #4338ca;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.3s;
}

	.bottom-cta:hover {
		background-color: #f1f5f9;
	}

.box-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	margin-top: 2rem;
}

.box {
	background: white;
	color: #333;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	width: 250px;
	max-width: 90vw;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

	.box:hover {
		transform: translateY(-10px);
		box-shadow: 0 12px 24px rgba(0,0,0,0.2);
	}

	.box h3 {
		margin-top: 0;
		font-size: 2rem;
		margin-bottom: 0.5rem;
	}

	.box p {
		font-size: 1.2rem;
		line-height: 1.4;
	}

@media (max-width: 600px) {
	.hero h1 {
		font-size: 2rem;
	}
}


