.module-container {
	display: flex;
}

.left-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.right-section h2 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 2rem;
	margin-top: auto;
}

.left-section img {
	width: 80%;
	border-radius: 15px;
}

.right-section {
	flex: 1.5;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.right-section p {
	margin-bottom: 2rem;
	line-height: 1.6;
}

.buttons {
	padding: 1rem;
	font-size: 2rem;
	border: none;
	border-radius: 10px;
	background: linear-gradient(to right, #11111d, #292938);
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	margin: 1rem;
	text-decoration: none;
}

.buttons:hover {
	background: #44445a;
}

.back-button {
	width: fit-content;
	font-size: 5.5rem;
	margin: 0 1.5rem;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	color: #9e2d66;
}

.zoom-button {
    display: inline-block;
    transition: transform 0.3s ease;
}
.zoom-button:hover {
    transform: scale(1.2);
}