.toggle-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 4rem;
}
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(45, 58, 39, 0.5);
	transition: 0.4s;
	border: 1px solid var(--gold);
}
.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 3px;
	background-color: var(--gold);
	transition: 0.4s;
}
input:checked + .slider:before {
	transform: translateX(26px);
}

.toggle-label {
	font-family: "Playfair Display";
	font-size: 1.2rem;
	color: var(--forest-white);
}
.active-label {
	color: var(--gold);
	font-weight: bold;
}

.content-section {
	display: none;
}
.content-section.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
