@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: #f9f9f9;
	color: #222;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
	padding: 2rem;
}

.cards {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2rem;
	max-width: 900px;
	width: 100%;
}

.gradient-card {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-direction: row;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	position: relative;
}

.gradient-card .gradient-side {
	background: linear-gradient(180deg, #6638F0, #5CC9F5);
	width: 40%;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.gradient-card .content-side {
	width: 60%;
	padding: 2rem;
	position: relative;
}

.gradient-card .content-side h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.gradient-card .content-side p {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.6;
}

.gradient-card .content-side .button-group {
	margin-top: 1.5rem;
}

.gradient-card .content-side .button-group .btn-gradient,
      .gradient-card .content-side .button-group .btn-outline {
	margin-right: 0.75rem;
}

.gradient-card .content-side .close-icon {
	position: absolute;
	top: 1.2rem;
	right: 1.2rem;
	width: 16px;
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.gradient-card .content-side .close-icon:hover {
	opacity: 1;
}

.white-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.white-card .text {
	max-width: 60%;
}

.white-card .text h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.white-card .text p {
	color: #555;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.white-card .shapes img {
	width: 120px;
	opacity: 0.9;
}

.btn-gradient {
	display: inline-block;
	background: #6638F0;
	color: #fff;
	text-decoration: none;
	padding: 0.6rem 1.4rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 4px 10px rgba(102, 56, 240, 0.3);
}

.btn-gradient:hover {
	background: #5CC9F5;
	transform: none;
	box-shadow: none;
}

.layout-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

@media (max-width: 768px) {
	body {
		padding: 1rem;
	}

	.gradient-card {
		flex-direction: column;
	}

	.gradient-card .gradient-side {
		width: 100%;
		height: 150px;
		border-radius: 12px 12px 0 0;
	}

	.gradient-card .content-side {
		width: 100%;
		padding: 1.5rem;
	}

	.white-card {
		flex-direction: column;
		text-align: center;
	}

	.white-card .text {
		max-width: 100%;
	}

	.white-card .shapes img {
		width: 80px;
		margin-top: 1rem;
	}

	.btn-gradient,
  .btn-outline {
		width: 100%;
		text-align: center;
		margin-bottom: 0.5rem;
	}
}