.fh-29-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
	font-family: "Roboto", sans-serif;
}

.fh-29-col-left, .fh-29-col-right {
	flex: 1;
	min-width: 300px;
	position: relative;
}

/* Left Column */
.fh-hero-image-wrap {
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 4px;
}

.fh-hero-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.fh-testimonial-card {
	position: absolute;
	bottom: -40px;
	left: 40px;
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	max-width: 380px;
	z-index: 2;
}

.fh-testi-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 10px;
}

.fh-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.fh-name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #333;
}

.fh-date {
	font-size: 13px;
	color: #888;
}

.fh-rating {
	color: #F2C055;
	font-size: 14px;
	margin-bottom: 10px;
}

.fh-testi-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #333;
	line-height: 1.4;
}

.fh-testi-text {
	font-size: 14px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

/* Right Column */
.fh-top-label {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 5px;
	color: #0F1826;
}

.fh-top-label::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background-color: #F2C055;
}

.fh-heading {
	font-size: 42px;
	line-height: 1.1;
	font-weight: 900;
	text-transform: uppercase;
	color: #0F1826;
	margin: 0 0 25px;
}

.fh-highlight {
	color: #F2C055;
}

/* Helper class for span highlighting if user adds it manually */
.fh-heading span {
	color: #F2C055;
}

.fh-description {
	font-size: 16px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 30px;
}

.fh-info-box {
	background-color: rgba(69, 121, 178, 0.15); /* Fallback */
	border-left: 5px solid #4579B2;
	padding: 20px 25px;
	border-radius: 4px;
	margin-bottom: 35px;
	color: #333;
	font-size: 15px;
	line-height: 1.6;
}

.fh-info-box p {
	margin: 0;
}

.fh-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.fh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.fh-btn-primary {
	background-color: #4579B2;
	color: #fff;
}
.fh-btn-primary:hover {
	opacity: 0.9;
	color: #fff;
}

.fh-btn-secondary {
	background-color: #F2C055;
	color: #0F1826;
}
.fh-btn-secondary:hover {
	opacity: 0.9;
	color: #0F1826;
}

/* Responsive */
@media (max-width: 1024px) {
	.fh-heading {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.fh-29-wrapper {
		flex-direction: column;
	}
	
	.fh-testimonial-card {
		position: relative;
		bottom: auto;
		left: auto;
		margin: -50px auto 0;
		width: 90%;
	}

	.fh-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.fh-btn {
		width: 100%;
		justify-content: center;
	}
}
