.angie-fc-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.angie-fc-header {
	text-align: center;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 600;
	margin-bottom: 50px;
}

.angie-fc-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.angie-fc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid #E5E7EB;
	transition: transform 0.2s ease-in-out;
}

.angie-fc-card:hover {
	transform: translateY(-2px);
}

.angie-card-icon {
	margin-bottom: 20px;
	display: inline-flex;
}

.angie-card-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.4;
}

.angie-card-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #4B5563;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.angie-fc-grid {
		grid-template-columns: 1fr;
	}
	
	.angie-fc-header {
		font-size: 24px;
	}
}
