.uae-vfc-card {
	--vfc-primary: #1D274E;
	--vfc-accent: #F94C30;
	--vfc-bg: #FFFFFF;
	--vfc-border: #E5E5E5;
	--vfc-text: #333333;
	--vfc-radius: 12px;

	background-color: var(--vfc-bg);
	border-radius: var(--vfc-radius);
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	border: 1px solid var(--vfc-border);
	font-family: inherit;
}

.vfc-title {
	color: var(--vfc-primary);
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: 700;
}

.vfc-form-group {
	margin-bottom: 25px;
}

.vfc-form-group > label {
	display: block;
	margin-bottom: 12px;
	font-weight: 700;
	color: var(--vfc-primary);
	font-size: 16px;
}

.vfc-select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--vfc-border);
	border-radius: 8px;
	font-size: 16px;
	color: var(--vfc-text);
	background-color: #f9f9f9;
	outline: none;
	transition: border-color 0.3s;
}

.vfc-select:focus {
	border-color: var(--vfc-primary);
}

.vfc-toggles {
	background-color: #fcfcfc;
	padding: 15px;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
}

.vfc-toggle-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.vfc-toggle-item:last-child {
	margin-bottom: 0;
}

.vfc-checkbox {
	margin-right: 12px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.vfc-toggle-item label {
	margin: 0;
	font-weight: 500;
	color: var(--vfc-text);
	cursor: pointer;
	font-size: 15px;
}

.vfc-calculate-btn {
	width: 100%;
	padding: 16px;
	background-color: var(--vfc-accent);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.1s;
	margin-top: 10px;
}

.vfc-calculate-btn:hover {
	background-color: #e0442b;
}

.vfc-calculate-btn:active {
	transform: scale(0.98);
}

.vfc-results-box {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 2px dashed var(--vfc-border);
}

.vfc-results-box h4 {
	margin-top: 0;
	margin-bottom: 15px;
	color: var(--vfc-primary);
	font-size: 18px;
}

.vfc-breakdown-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.vfc-breakdown-list li {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	color: var(--vfc-text);
	border-bottom: 1px solid #f0f0f0;
}

.vfc-breakdown-list li:last-child {
	border-bottom: none;
}

.vfc-breakdown-list li span:last-child {
	font-weight: 600;
}

.vfc-total-cost {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f4f6fa;
	padding: 18px;
	border-radius: 8px;
	margin-bottom: 15px;
	border-left: 4px solid var(--vfc-accent);
}

.vfc-total-cost span {
	font-weight: 700;
	color: var(--vfc-primary);
	font-size: 18px;
}

.vfc-total-amount {
	font-size: 26px;
	color: var(--vfc-accent);
}

.vfc-disclaimer {
	font-size: 13px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}