/* Wrapper & Card */
.fie-cta-943555cd-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
}

.fie-cta-943555cd-card {
	background-color: #ffffff;
	border-radius: 12px;
	border: 1px solid #eaeaea;
	box-shadow: 0 10px 40px rgba(11, 37, 69, 0.08);
	max-width: 1000px;
	width: 100%;
	padding: 60px 40px;
	text-align: center;
	margin: 0 auto;
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fie-cta-943555cd-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 50px rgba(11, 37, 69, 0.12);
}

/* Eyebrow & Line */
.fie-cta-943555cd-eyebrow-wrapper {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 24px;
}

.fie-cta-943555cd-accent-line {
	width: 48px;
	height: 2px;
	background-color: #c9a24d;
	margin-bottom: 14px;
}

.fie-cta-943555cd-eyebrow {
	color: #0b2545;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Typography */
.fie-cta-943555cd-headline {
	color: #0b2545;
	font-size: 50px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 24px 0;
	text-transform: uppercase;
}

.fie-cta-943555cd-headline .gold-accent {
	color: #c9a24d;
}

.fie-cta-943555cd-supporting {
	color: #4a5568;
	font-size: 24px;
	margin-bottom: 36px;
}

.fie-cta-943555cd-supporting .supporting-accent {
	color: #c9a24d;
	font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Print', cursive, serif;
	font-size: 2em; /* Significantly larger */
	display: block;
	margin-top: 20px; /* Added padding between lines */
}

.fie-cta-943555cd-trust {
	font-size: 19px;
	color: #0b2545;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Social Proof */
.fie-cta-943555cd-social-proof {
	font-size: 16px;
	color: #0b2545;
	font-weight: 500;
	margin-bottom: 36px;
}

.fie-cta-943555cd-social-proof .social-sep {
	color: #c9a24d;
	margin: 0 10px;
}

.fie-cta-943555cd-social-proof .social-stars {
	color: #c9a24d; /* Made stars gold */
}

/* Services Row */
.fie-cta-943555cd-services {
	font-size: 19px;
	color: #0b2545;
	font-weight: 600;
	font-variant: small-caps;
	letter-spacing: 2px;
	margin-bottom: 36px;
}

.fie-cta-943555cd-services .service-sep {
	color: #c9a24d;
	margin: 0 12px;
}

/* Divider */
.fie-cta-943555cd-divider {
	width: 75px;
	height: 3px;
	background-color: #c9a24d;
	margin: 0 auto 36px auto;
}

/* Buttons */
.fie-cta-943555cd-actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.fie-cta-943555cd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px 40px;
	border-radius: 6px;
	font-size: 19px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.fie-cta-943555cd-btn-primary {
	background-color: #0b2545;
	color: #ffffff;
	border: 2px solid #0b2545;
}

.fie-cta-943555cd-btn-primary:hover {
	background-color: #c9a24d;
	border-color: #c9a24d;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.fie-cta-943555cd-btn-secondary {
	background-color: #ffffff;
	color: #0b2545;
	border: 1px solid #e0e0e0;
	font-weight: 600;
}

.fie-cta-943555cd-btn-secondary:hover {
	border-color: #0b2545;
	color: #0b2545;
}

.fie-cta-943555cd-btn-secondary svg {
	width: 22px;
	height: 22px;
	fill: #c9a24d;
	margin-right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
	.fie-cta-943555cd-card {
		padding: 40px 20px;
	}

	.fie-cta-943555cd-headline {
		font-size: 38px;
	}
	
	.fie-cta-943555cd-supporting .supporting-accent {
		font-size: 1.6em;
	}

	.fie-cta-943555cd-social-proof {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.fie-cta-943555cd-social-proof .social-sep {
		display: none;
	}

	.fie-cta-943555cd-services {
		font-size: 16px;
	}

	.fie-cta-943555cd-actions {
		flex-direction: column;
		gap: 16px;
		width: 100%;
	}

	.fie-cta-943555cd-btn {
		width: 100%;
	}
}