/* ContactForm.css */
.contact-form-section {
	padding: 40px 0;
	background: #f5f5f5;
}
.contact-form-container {
	max-width: 500px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	padding: 32px 24px;
}
.contact-form-header {
	margin-bottom: 24px;
}
.contact-form-title {
	font-size: 2rem;
	margin-bottom: 8px;
	color: #222;
}
.contact-form-description {
	font-size: 1rem;
	color: #555;
}
.contact-form-wrapper {
	margin-top: 16px;
}
.contact-error {
	color: #c00;
	font-weight: bold;
	margin: 16px 0;
}
/* Estilos para los campos del formulario CF7 */
.wpcf7-form label {
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
}
.wpcf7-form input,
.wpcf7-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 16px;
	font-size: 1rem;
}
.wpcf7-form input[type="submit"] {
	background: #0073e6;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover {
	background: #005bb5;
}
.contact-form-section .wpcf7-form input[type="submit"]{
background-color: var(--color1);
}