.sv-contact-form-wrapper {
	max-width: 100%;
	font-family: inherit;
}
.sv-cta-text {
	margin-bottom: 20px;
	font-size: 1.1em;
	font-weight: 500;
}
.sv-form-group {
	margin-bottom: 15px;
}
.sv-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}
.sv-form-group input[type="text"],
.sv-form-group input[type="email"],
.sv-form-group input[type="tel"],
.sv-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
.sv-form-group textarea {
	resize: vertical;
}
.sv-btn-submit {
	padding: 12px 24px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.sv-btn-submit:hover {
	background-color: #005177;
}
.sv-btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}