/* Root colors */
:root {
	--primary-color: #00c853;
	/* Bright green */
	--secondary-color: #ff4081;
	/* Accent color */
	--text-color: #333;
	--bg-light: #f1f1f1;
	/* Soft light background for better contrast */
	--bg-white: #ffffff;
	/* White background for main container */
	--border-radius: 8px;
	/* Slightly smaller border radius */
	--shadow-color: rgba(0, 0, 0, 0.15);
	/* Darker shadow for better visibility */
}

/* Main section styles */
.pricing-section {
	background-color: var(--bg-white);
	padding: 30px;
	/* Smaller padding for a more compact layout */
	border-radius: var(--border-radius);
	box-shadow: 0 6px 20px var(--shadow-color);
	/* Stronger, more noticeable shadow */
	max-width: 500px;
	/* Reduced width */
	margin: 50px auto;
	/* More compact margin */
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-image: linear-gradient(145deg, #f3f3f3, #ffffff);
	/* Subtle gradient for contrast */
}

.pricing-section:hover {
	transform: translateY(-8px);
	/* Reduced hover movement */
	box-shadow: 0 10px 30px var(--shadow-color);
	/* Enhanced shadow on hover */
}

/* Toggle buttons */
.plan-toggle {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	/* More compact margin */
}

.toggle-btn {
	padding: 8px 15px;
	/* Smaller buttons */
	border: 2px solid var(--primary-color);
	border-radius: 50px;
	background-color: var(--bg-light);
	/* Light background for buttons */
	color: var(--primary-color);
	font-size: 1rem;
	/* Slightly smaller font */
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.toggle-btn.active,
.toggle-btn:hover {
	background-color: var(--primary-color);
	color: white;
}

/* Plan features list */
.plan-features {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	/* More compact spacing */
	font-size: 1rem;
	/* Reduced font size */
}

.plan-features li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	/* Less spacing between items */
	font-size: 1rem;
	font-weight: 500;
}

.checkmark {
	color: var(--primary-color);
	font-size: 20px;
	/* Slightly smaller icon */
	margin-right: 10px;
}

/* Plan price */
.plan-price-container {
	margin-bottom: 20px;
}

.plan-price {
	font-size: 2rem;
	/* Reduced size */
	font-weight: bold;
	color: var(--secondary-color);
}

.plan-period {
	display: block;
	font-size: 0.9rem;
	color: var(--text-color);
	margin-top: 5px;
}

/* Setup Fee */
.setup-fee {
	font-size: 0.9rem;
	color: var(--text-color);
	margin-top: 10px;
}

/* Buttons */
.buttons-container {
	display: flex;
	justify-content: space-around;
	gap: 10px;
	/* Reduced gap between buttons */
}

.btn-close,
.btn-upgrade {
	padding: 10px 20px;
	/* Smaller buttons */
	font-size: 1rem;
	font-weight: bold;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-close {
	background-color: #f0f0f0;
	color: var(--text-color);
	border: 2px solid #ccc;
}

.btn-upgrade {
	background-color: var(--secondary-color);
	color: white;
	border: none;
}

.btn-upgrade:hover {
	background-color: #ff005f;
	transform: translateY(-2px);
	/* Less hover movement */
}

.btn-close:hover {
	background-color: #eeeeee;
	transform: translateY(-2px);
	/* Less hover movement */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.pricing-section {
		padding: 20px;
		margin: 30px auto;
	}

	.btn-close,
	.btn-upgrade {
		padding: 8px 15px;
	}

	.plan-price {
		font-size: 1.8rem;
	}

	.plan-features li {
		font-size: 0.9rem;
	}
}