
.acs-contact-form {
	background-color: #4a5568;
	color: white;
	padding: 30px;
	max-width: 800px;
	margin: 0 auto;
	font-family: Arial, sans-serif;
}

.acs-form-message {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
}

.acs-form-message.success {
	background-color: #48bb78;
	color: white;
}

.acs-form-message.error {
	background-color: #f56565;
	color: white;
}

.acs-form-message ul {
	margin: 0;
	padding-left: 20px;
}

.acs-contact-form .form-row {
	display: flex;
	gap: 20px;
}

.acs-contact-form .form-group {
	flex: 1;
	margin-bottom: 20px;
}

.acs-contact-form .form-group.full-width {
	flex: 100%;
}

.acs-contact-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: normal;
	font-size: 16px;
}

.acs-contact-form label .required {
	color: #fff;
}

.acs-contact-form input[type="text"], .acs-contact-form input[type="email"], .acs-contact-form input[type="tel"], .acs-contact-form select {
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 4px;
	background-color: #f7fafc;
	color: #4a5568;
	font-size: 16px;
	box-sizing: border-box;
}

.acs-contact-form input::placeholder {
	color: #a0aec0;
	font-size: 16px;
}

.acs-contact-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\' fill=\'none\' stroke=\'currentColor\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-linejoin=\'round\'%3e%3cpolyline points=\'6,9 12,15 18,9\'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
	padding-right: 40px;
}

.acs-contact-form select.nitro-lazy {
	background-image: none !important;
}

.acs-contact-form .consent-group {
	margin: 25px 0;
}

.acs-contact-form .consent-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.acs-contact-form input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.acs-contact-form .consent-text {
	font-size: 14px;
	line-height: 1.5;
}

.acs-contact-form .consent-text a {
	color: #63b3ed;
	text-decoration: underline;
}

.acs-contact-form .privacy-notice {
	margin: 20px 0;
	font-size: 14px;
	line-height: 1.5;
	color: #e2e8f0;
}

.acs-contact-form .privacy-notice a {
	color: #63b3ed;
	text-decoration: underline;
}

.acs-contact-form .submit-button {
	width: 100%;
	padding: 15px;
	background-color: #e53e3e;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
}

.acs-contact-form .submit-button:hover {
	background-color: #c53030;
}

.acs-contact-form .state-row {
	display: none;
}

.acs-contact-form .state-row.show {
	display: flex;
}

@media (max-width: 768px) {
	.acs-contact-form .form-row {
		flex-direction: column;
		gap: 0;
	}
	
	.acs-contact-form .state-row.show {
		flex-direction: column;
		gap: 0;
	}
	
	.acs-contact-form {
		padding: 20px;
	}
}
