.demo-container {
	padding: 120px 0 60px;
	background-color: #f8f9fa;
	margin-top: 0;
}

.demo-heading {
	font-size: 2.5rem;
	color: #012970;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.demo-subheading {
	font-size: 1.2rem;
	color: #444;
	text-align: center;
	margin-bottom: 3rem;
}

.demo-features {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 30px;
}

.demo-feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.demo-feature-item:last-child {
	margin-bottom: 0;
}

.demo-feature-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #f0f3ff;
	margin-right: 15px;
	flex-shrink: 0;
	color: #4154f1;
}

.demo-feature-content h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #012970;
	margin-bottom: 5px;
}

.demo-feature-content p {
	color: #444;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.demo-form {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.demo-form h3 {
	font-size: 1.5rem;
	color: #012970;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.form-control {
	height: 50px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	padding: 10px 15px;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.form-control:focus {
	border-color: #4154f1;
	box-shadow: 0 0 0 0.2rem rgba(65, 84, 241, 0.25);
}

.submit-btn {
	background-color: #4154f1;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: #3546d4;
	transform: translateY(-2px);
}

.g-recaptcha {
	margin-bottom: 1.5rem;
}

.sent-message, .error-message {
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.sent-message {
	background-color: #e8f6e8;
	color: #0dc268;
	border: 1px solid #c3e6cb;
}

.error-message {
	background-color: #f8d7da;
	color: #dc3545;
	border: 1px solid #f5c6cb;
}

.demo-info {
	background-color: #e7f1ff;
	border-left: 4px solid #4154f1;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.demo-info p {
	margin-bottom: 0;
	color: #012970;
} 