.ff-container-12077 {
	background-color: #111827;
	padding: 80px 20px;
	font-family: 'Source Serif 4', serif;
}

.ff-header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.ff-pre-title-wrapper {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.ff-pre-title-wrapper::after {
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background-color: #ce6219;
}

.ff-pre-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ce6219;
	font-weight: 600;
	font-family: sans-serif;
}

.ff-main-title {
	font-size: 42px;
	color: #ffffff;
	font-family: 'Playfair Display', serif;
	margin-bottom: 20px;
	font-weight: 600;
}

.ff-description {
	font-size: 16px;
	color: #9ca3af;
	line-height: 1.6;
}

.ff-grid-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	max-width: 1100px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.05);
}

.ff-grid-item {
	background-color: #1f2937;
	padding: 50px;
	display: flex;
	flex-direction: column;
}

.ff-letter {
	font-size: 64px;
	font-family: 'Playfair Display', serif;
	color: #9ca3af;
	opacity: 0.5;
	line-height: 1;
	margin-bottom: 30px;
}

.ff-item-title {
	font-size: 20px;
	color: #ffffff;
	margin: 0 0 10px 0;
	font-weight: 600;
}

.ff-item-subtitle {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #9ca3af;
	font-family: sans-serif;
	margin-bottom: 20px;
}

.ff-item-desc {
	font-size: 14px;
	color: #d1d5db;
	line-height: 1.6;
	margin-bottom: 25px;
}

.ff-bullet-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ff-bullet-list li {
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 10px;
	padding-left: 15px;
	position: relative;
	font-family: sans-serif;
}

.ff-bullet-list li::before {
	content: '›';
	position: absolute;
	left: 0;
	top: -1px;
	color: #ce6219;
	font-size: 16px;
}

@media (max-width: 768px) {
	.ff-grid-wrapper {
		grid-template-columns: 1fr;
	}
	.ff-grid-item {
		padding: 30px;
	}
}