/**
 * Solution Cards Styles
 */

.phytest-solution-cards-wrapper {
	margin: 0 auto;
	padding: 40px 20px;
}

.phytest-solution-cards-container {
	display: flex;
	gap: 24px;
	margin-bottom: 40px;
	justify-content: center;
}

.phytest-solution-card {
	flex: 1;
	max-width: 628px;
	width: 628px;
	min-height: 344px;
	background: #ffffff;
	padding: 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid #EDEDED;
	border-radius: 24px;
	opacity: 1;
	transition: transform 0.3s ease;
}

.phytest-solution-card:hover {
	transform: translateY(-5px);
	border-color: #682B88;
}

.phytest-solution-icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	background-color: #F7EFFC;
	border-radius: 8px;
	opacity: 1;
}

.phytest-solution-icon svg {
	width: 56px;
	height: 56px;
	stroke: #682B88;
}

.phytest-solution-title {
	font-size: 32px;
	font-weight: 700;
	color: #363636;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.phytest-solution-description {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	margin: 0 0 35px 0;
	flex-grow: 1;
}

.phytest-solution-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 188px;
	height: 52px;
	padding: 10px 32px;
	background: #ffffff;
	border: 1px solid #000000;
	border-top-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #000000;
	font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif !important;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0%;
	text-align: center;
	text-decoration: none;
	opacity: 1;
	transition: all 0.3s ease;
}

.phytest-solution-button:hover {
	background: #682B88;
	color: #ffffff;
	text-decoration: none;
	border-color: #682B88;
}

/* CTA Section */
.phytest-solution-cta {
	text-align: center;
	padding-top: 20px;
}

.phytest-solution-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 252px;
	height: 52px;
	padding: 10px 32px;
	background: #ffffff;
	border: 1px solid #682B88;
	border-top-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #682B88;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	opacity: 1;
	transition: all 0.3s ease;
	box-shadow: none;
}

.phytest-solution-cta-button:hover {
	background: #682B88;
	border-color: #682B88;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(104, 43, 136, 0.3);
	color: #ffffff;
	text-decoration: none;
}

/* Responsive Design */
@media (max-width: 968px) {
	.phytest-solution-cards-container {
		flex-direction: column;
		gap: 24px;
	}

	.phytest-solution-card {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 344px;
	}

	.phytest-solution-title {
		font-size: 28px;
	}

	.phytest-solution-description {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.phytest-solution-cards-wrapper {
		padding: 30px 15px;
	}

	.phytest-solution-cards-container {
		flex-direction: column;
	}

	.phytest-solution-card {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 344px;
		padding: 32px;
	}

	.phytest-solution-title {
		font-size: 24px;
	}

	.phytest-solution-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 20px;
	}

	.phytest-solution-icon svg {
		width: 40px;
		height: 40px;
	}

	.phytest-solution-cta-button {
		padding: 16px 32px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.phytest-solution-cards-container {
		flex-direction: column;
	}

	.phytest-solution-card {
		width: 100%;
		max-width: 100%;
		height: auto;
		min-height: 300px;
		padding: 32px 20px;
	}

	.phytest-solution-title {
		font-size: 22px;
	}

	.phytest-solution-description {
		font-size: 14px;
	}

	.phytest-solution-button {
		width: 100%;
		max-width: 188px;
	}

	.phytest-solution-cta-button {
		padding: 14px 28px;
		font-size: 15px;
		width: 100%;
	}
}

