.main-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	margin: 0 auto;
	width: 100%;
}

.section-header {
	text-align: center;
	margin-bottom: 45px;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 12px;
}

.title-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin: 0 auto;
}

.title-divider .line {
	height: 3px;
	width: 45px;
	background-color: #0b6b32;
	border-radius: 2px;
}

.title-divider .square {
	width: 7px;
	height: 7px;
	background-color: #333333;
}

.slider-container {
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slides-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	min-height: 280px;
	display: flex;
	align-items: center;
}

.slide-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
	transform: translateX(20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px;
}

.slide-item.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	position: relative;
}

.logo-box {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.logo-box img {
	max-height: 90px;
	max-width: 250px;
	object-fit: contain;
}

.press-name {
	font-size: 18px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 2px;
}

.press-url {
	font-size: 13px;
	font-style: italic;
	color: #777777;
	margin-bottom: 25px;
}

.press-quote {
	font-size: 17px;
	color: #444444;
	max-width: 750px;
	font-weight: 400;
	padding: 0 15px;
	line-height: 1.6;
}

.nav-btn {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.9);
	color: #0b6b32;
	border: 1px solid #dddddd;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.2s ease;
	z-index: 10;
}

.nav-btn:hover {
	background-color: #0b6b32;
	color: #ffffff;
	border-color: #0b6b32;
}

.nav-btn.prev-btn {
	left: -30px;
}

.nav-btn.next-btn {
	right: -30px;
}

.dots-container {
	display: flex;
	gap: 8px;
	margin-top: 35px;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cccccc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background-color: #0b6b32;
	width: 24px;
	border-radius: 5px;
}

@media (max-width: 900px) {
	.nav-btn.prev-btn {
		left: -10px;
	}
	.nav-btn.next-btn {
		right: -10px;
	}
}

@media (max-width: 768px) {
	.nav-menu {
		gap: 18px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.nav-item a {
		font-size: 13px;
		padding: 12px 0;
	}

	.section-title {
		font-size: 22px;
	}

	.press-quote {
		font-size: 15px;
	}

	.logo-box {
		height: 80px;
	}

	.logo-box img {
		max-height: 70px;
	}

	.nav-btn {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.nav-menu {
		gap: 12px;
	}

	.nav-item a {
		font-size: 11px;
	}

	.section-title {
		font-size: 18px;
	}

	.press-quote {
		font-size: 14px;
	}

	.nav-btn {
		display: none; 
	}
}