.contact-form {
	max-width: 1000px;
	min-width: 300px;
	/* top | right | bottom | left */
	/* margin: 10px 20px; */
	padding: 20px;
	padding-left: 20px;
	margin-left: 40px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #f9f9f9;
}

#myForm {
	/* background-color: lightblue; */

	/* margin-left: 30px; */
}

.form-preamble {
	h1, h2, h3, p {
		margin-left: 40px;
	}

	/* background-color: lightblue; */

}

#checkboxes label {
	float: left;
}

#checkboxes ul {
	margin: 0;
	list-style: none;
	float: left;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	/* Allows columns to wrap on smaller screens */
	margin-bottom: 15px;
	gap: 20px;
	/* Spacing between columns */
}

.form-column {
	flex: 1;
	/* Allows columns to grow and shrink */
	min-width: 200px;
	/* Minimum width for columns before wrapping */
}

.form-row.full-width {
	display: block;
	/* For single-column elements like subject and message */
}

.contact-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
	/* Include padding and border in element's total width */
}

.contact-form textarea {
	resize: vertical;
	/* Allow vertical resizing of textarea */
}

.contact-form button {
	/* background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px; */
}

#submitForm {
	float: left;
}

.contact-form button:hover {
	background-color: #0056b3;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
	.form-row {
		flex-direction: column;
		/* Stack columns vertically on small screens */
		gap: 1px;
		/* Remove gap when stacking */
	}

	.form-column {
		margin-bottom: 15px;
		/* Add spacing between stacked fields */
	}
}