.salonpos-module__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 10rem;
}


.salonpos-module__content {
	flex: 1 1 50%;
}

.salonpos-header {
	width: 75%;

}


.salonpos-module__description {
	font-size: 1.25rem;
	color: #0B1E47;
	margin-bottom: 2rem;
}

.salonpos-module__cta {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #041C50;
	color: white;
	text-decoration: none;
	font-size: 1.25rem;
	border-radius: 25px;
	margin-top: 1rem;
	align-items: center;
}

.salonpos-module__cta svg {
	margin-left: 10px;
}

/* Right section: Features list */
.salonpos-module__features {
	flex: 1 1 45%;
}

.salonpos-module__features ul {
	list-style-type: disc;
	padding-left: 20px;
}

.salonpos-module__features li {
	font-size: 1.125rem;
	color: #041C50;
	margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.salonpos-module__wrapper {
		flex-direction: column;
		padding-left: 2rem;
	}

	.salonpos-module__content,
	.salonpos-module__features {
		flex: 1 1 100%;
	}

	.salonpos-module__title {
		font-size: 2.5rem;
	}

	.btn {
		margin-bottom: 2rem;
	}
}

