/* Contact Form 7 styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.95rem;
	background: var(--wp--preset--color--white);
	transition: border-color 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--sage);
}

.wpcf7 textarea {
	min-height: 120px;
	max-height: 100px;
	resize: vertical;
}

.wpcf7 input[type="submit"] {
	display: block;
	width: 100%;
	background-color: var(--wp--preset--color--text-dark);
	color: var(--wp--preset--color--white);
	border: none;
	border-radius: 50px;
	padding: 0.875rem 2.5rem;
	font-family: var(--wp--preset--font-family--poppins);
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
	background-color: var(--wp--preset--color--sage);
}

.wpcf7 label {
	font-family: var(--wp--preset--font-family--poppins);
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
	display: block;
}

.wpcf7-form p {
	margin-bottom: 1.25rem;
}

.wpcf7 {
	padding: 0 2rem 0 0;
}
