body {
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
	background-color: #000;
	color: #fff;
	overflow: hidden;
}

.section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
	position: absolute;
	width: 100vw;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(100vh);
	padding: 40px;
	box-sizing: border-box;
}

.section.active {
	opacity: 1;
	transform: translateY(0);
}

.content-container {
	display: flex;
	width: 100%;
	max-width: 1200px;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	gap: 40px;
}

.text-content {
	flex: 1;
	text-align: left;
	padding-right: 20px;
}

.image-content {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* Special case for the first section which has no image */
#section1 .content-container {
	flex-direction: column;
	align-items: flex-start;
}

#section1 .text-content {
	max-width: 800px;
}

.section h1 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.section p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	line-height: 1.6;
}

.project-image {
	width: 500px;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

#container {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.pagination {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.pagination-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 10px 0;
	cursor: pointer;
	transition: background-color 0.3s;
}

.pagination-dot.active {
	background-color: #fff;
}

.downloads-counter {
	margin-top: 20px;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
}

.counter-number {
	font-weight: bold;
	color: #4CAF50;
	margin: 0 8px;
}

.downloads-icon {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.downloads-icon svg {
	width: 100%;
	height: 100%;
	fill: #4CAF50;
}

.contact-info {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.contact-icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-icon svg {
	width: 100%;
	height: 100%;
	fill: #fff;
}

.contact-link {
	color: #4CAF50;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-link:hover {
	color: #81C784;
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.content-container {
		flex-direction: column;
		gap: 20px;
	}

	.text-content {
		text-align: center;
		padding-right: 0;
	}

	.section h1 {
		font-size: 2.5rem;
	}

	.downloads-counter {
		justify-content: center;
	}

	.contact-info {
		align-items: center;
	}

	#section1 .content-container {
		align-items: center;
	}
}