* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: linear-gradient(135deg, #C1D2D9 0%, #B8CBD4 100%);
	min-height: 100vh;
	font-family: 'Open Sans', sans-serif;
}

#header-block {
	height: 220px;
	width: 100%;
	background: linear-gradient(270deg, rgba(184, 203, 212, 0.4) 0%, rgba(209, 225, 232, 0.9) 45%,
		rgba(209, 225, 232, 0.9) 55%, rgba(184, 203, 212, 0.4) 100%), url('media/TreeLine.jpg');
	background-size: contain;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	font-weight: 700;
	font-family: 'DynaPuff', sans-serif;
	color: white;
	letter-spacing: -0.5px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	padding: 0 20px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-wrapper {
	width: 100%;
	position: relative;
	margin: 0;
}

.section-with-sign {
	background: rgba(19, 46, 31, 1);
	width: 100%;
	padding: 40px 0;
	position: relative;
	margin-bottom: 0;
}

.section-content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px;
	transition: transform 0.2s ease;
}

.section-content:hover {
	transform: translateY(-2px);
}

.content-item {
	background: white;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	color: #3c3950;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-align: left;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
	overflow: hidden;
	flex: 1;
}

.content-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #7F5749, #9B6B5C);
}

.content-item:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.logo-section {
	background: rgba(19, 46, 31, 1);
	width: 100%;
	padding: 40px 0;
}

.content-item h3 {
	color: #3c3950;
	font-family: 'DynaPuff';
	font-weight: 700;
	font-size: 19px;
	margin: 0 0 15px 0;
	letter-spacing: 0.5px;
}

.content-item p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.content-item ul {
	margin: 0;
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.6;
}

.content-item li {
	margin-bottom: 8px;
	position: relative;
}

.content-item li::marker {
	color: #7F5749;
}

#hook {
	font-size: 18px;
	line-height: 1.7;
}

.section-sign {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 60px 0 0 0;
	z-index: 10;
}

.sign-post {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -30px;
	width: 14px;
	height: 80px;
	background: linear-gradient(to right, #60443F 0%, #7F5749 30%, #8B5D50 50%, #7F5749
		70%, #60443F 100%);
	border-radius: 7px;
	box-shadow: inset -3px 0 6px rgba(0, 0, 0, 0.4), 3px 0 8px
		rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.sign-post::after {
	content: '';
	position: absolute;
	left: 2px;
	top: 0;
	width: 10px;
	height: 100%;
	background: repeating-linear-gradient(90deg, transparent 0px, rgba(96, 68, 63, 0.4)
		1px, transparent 2px, transparent 4px, rgba(139, 93, 80, 0.2) 5px,
		transparent 6px);
	border-radius: 5px;
}

.section-title {
	color: white;
	font-family: 'DynaPuff';
	letter-spacing: 1px;
	background: linear-gradient(135deg, #7F5749 0%, #8B5D50 50%, #7F5749 100%);
	padding: 18px 40px 18px 25px;
	font-size: 19px;
	border-radius: 6px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	transition: transform 0.2s ease;
	position: relative;
	z-index: 2;
	margin-bottom: -20px;
}

.section-title:hover {
	transform: translateY(-2px);
}

.section-title::after {
	content: '';
	position: absolute;
	top: 0;
	right: -25px;
	width: 0;
	height: 0;
	border-top: 29px solid transparent;
	border-bottom: 29px solid transparent;
	border-left: 28px solid #7F5749;
}

h2 {
	color: #3c3950;
	font-family: 'DynaPuff';
	letter-spacing: 1px;
	font-size: 18px;
}

img {
	max-width: 100%;
	height: auto;
}

.cta-section {
	background: rgba(127, 87, 73, 0.1);
	padding: 40px 0;
	text-align: center;
	margin: 60px 0 0 0;
	border-top: 2px solid rgba(127, 87, 73, 0.2);
	border-bottom: 2px solid rgba(127, 87, 73, 0.2);
	width: 100%;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.cta-section h2 {
	margin-bottom: 15px;
	color: #7F5749;
}

.cta-section p {
	font-size: 16px;
	line-height: 1.6;
	color: #5f727f;
	margin-bottom: 20px;
}

.cta-button {
	background: linear-gradient(135deg, #7F5749, #8B5D50);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 6px;
	font-family: 'DynaPuff';
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
	.section-content {
		flex-direction: column;
	}
	.logo-section .content-item:first-child {
		min-width: auto;
	}
	.logo-section .content-item:first-child img {
		width: 180px;
		height: 180px;
	}
	.section-title {
		font-size: 16px;
		padding: 15px 35px 15px 20px;
	}
	#header-block {
		font-size: 28px;
		padding: 0 20px;
		text-align: center;
	}
	.section-sign {
		margin: 40px 0 0 0;
	}
}

.major-section {
	margin-bottom: 40px;
}

/* Software Showcase Styles */
.showcase-content {
	display: flex;
	align-items: center;
	gap: 60px;
	min-height: 500px;
}

.ipad-container {
	flex: 0 0 auto;
	position: relative;
}

.ipad-frame {
	width: 480px;
	height: 600px;
	background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
	border-radius: 25px;
	padding: 25px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 2px 4px
		rgba(255, 255, 255, 0.1);
	position: relative;
}

.ipad-frame::before {
	content: '';
	position: absolute;
	top: 11px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 6px;
	background: black;
	border-radius: 4px;
	z-index: 3;
}

.ipad-screen {
	width: 100%;
	height: 550px;
	background: #000;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.screenshot-container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.screenshot {
	width: 100%;
	height: 100%;
	object-fit: fill;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.screenshot.active {
	opacity: 1;
}

.screenshot-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	pointer-events: none;
}

.screenshot-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 25px;
}

.screenshot-nav {
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.screenshot-nav:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: scale(1.05);
}

.screenshot-dots {
	display: flex;
	gap: 8px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.2s ease;
}

.dot.active {
	background: rgba(0, 0, 0, 0.9);
	transform: scale(1.2);
}

.feature-description {
	flex: 1;
}

.description-content {
	display: none;
}

.description-content.active {
	display: block !important;
	color: white;
}

.description-content h3 {
	color: white;
	font-family: 'DynaPuff';
	font-size: 24px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.description-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.description-content ul {
	list-style: none;
	padding: 0;
}

.description-content li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.description-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7F5749;
	font-weight: bold;
	background: rgba(127, 87, 73, 0.2);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.description-content h3 {
	color: white;
	font-family: 'DynaPuff';
	font-size: 24px;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

.description-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.description-content ul {
	list-style: none;
	padding: 0;
}

.description-content li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.description-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7F5749;
	font-weight: bold;
	background: rgba(127, 87, 73, 0.2);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Responsive adjustments for showcase */
@media (max-width: 768px) {
	.showcase-content {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}
	.ipad-frame {
		width: 300px;
		height: 400px;
		padding: 20px;
	}
	.ipad-screen {
		height: 320px;
	}
	.description-content h3 {
		font-size: 20px;
	}
}

#interactive .section-with-sign {
	background: rgba(19, 46, 31, 0.5);
	position: relative;
	overflow: hidden;
}

#interactive .section-with-sign::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	animation: background-switch 25s ease-in-out infinite;
	z-index: 0;
}

#interactive .container {
	position: relative;
	z-index: 1;
}

@keyframes background-switch {
	0% {
		background-image: url('media/WoodGrain.jpg');
	}
	33.3% {
		background-image: url('media/GrassPattern.jpg');
	}
	66.6% {
		background-image: url('media/WaterPattern.jpg');
	}
	100% {
		background-image: url('media/WoodGrain.jpg');
	}
}