.pbi-1661-wrapper {
	padding: 60px 20px;
	text-align: center;
	font-family: inherit;
}

.pbi-1661-header {
	max-width: 800px;
	margin: 0 auto 60px;
}

.pbi-1661-eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	margin-bottom: 15px;
	font-weight: 600;
}

.pbi-1661-title {
	font-size: 36px;
	margin-bottom: 20px;
	font-weight: 700;
}

.pbi-1661-intro {
	font-size: 16px;
	line-height: 1.6;
}

.pbi-1661-cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto 60px;
}

.pbi-1661-card {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	text-align: left;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.pbi-1661-card-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #0A192F;
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
}

.pbi-1661-card-img-wrap {
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.pbi-1661-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pbi-1661-card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pbi-1661-card-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 5px;
}

.pbi-1661-card-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	color: #D4B996;
	font-weight: 600;
}

.pbi-1661-card-desc {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 30px;
	flex-grow: 1;
}

.pbi-1661-card-footer {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.pbi-1661-card-price {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.pbi-1661-card-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 12px 20px;
	background: #D4B996;
	color: #0A192F;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.pbi-1661-card-btn:hover {
	opacity: 0.9;
}

.pbi-1661-footer {
	max-width: 800px;
	margin: 0 auto;
}

.pbi-1661-support {
	font-size: 16px;
	margin-bottom: 30px;
}

.pbi-1661-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.pbi-1661-btn {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.pbi-1661-btn:hover {
	opacity: 0.9;
}

.pbi-1661-primary-btn {
	background: #0A192F;
	color: #fff;
}

.pbi-1661-secondary-btn {
	background: #f0f0f0;
	color: #333;
}

@media (max-width: 991px) {
	.pbi-1661-cards-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.pbi-1661-cards-container {
		grid-template-columns: 1fr;
	}
	.pbi-1661-actions {
		flex-direction: column;
	}
}