.cf8342-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	font-family: inherit;
	color: #202C40;
}

.cf8342-left-col,
.cf8342-right-col {
	flex: 1;
	min-width: 300px;
}

@media (max-width: 768px) {
	.cf8342-container {
		flex-direction: column;
	}
}

/* Left Column Styles */
.cf8342-badge {
	display: inline-block;
	background-color: #202C40;
	color: #fff;
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.cf8342-headline {
	font-size: 38px;
	line-height: 1.2;
	color: #202C40;
	margin: 0 0 20px 0;
	font-family: "Georgia", serif; /* Fallback for the serif font in image */
	font-weight: 400;
}

.cf8342-description {
	font-size: 16px;
	line-height: 1.6;
	color: #4a5568;
	margin: 0 0 30px 0;
}

.cf8342-contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 30px;
}

.cf8342-contact-list li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-size: 15px;
	font-weight: 500;
	color: #202C40;
}

.cf8342-contact-list li:last-child {
	margin-bottom: 0;
}

.cf8342-icon {
	margin-right: 15px;
	display: flex;
	align-items: center;
}

.cf8342-engagement-info {
	font-size: 14px;
	color: #4a5568;
}

.cf8342-engagement-title {
	margin: 0 0 5px 0;
	font-style: italic;
}

.cf8342-engagement-types {
	margin: 0;
	line-height: 1.6;
}

/* Right Column Form Styles */
.cf8342-wrapper {
	background-color: #fafafa; /* Light background for form area like in image */
	padding: 40px;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.cf8342-wrapper {
		padding: 20px;
	}
}

.cf8342-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cf8342-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.cf8342-col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cf8342-col-full {
	width: 100%;
}

.cf8342-col-half {
	width: calc(50% - 10px);
}

@media (max-width: 767px) {
	.cf8342-col-half {
		width: 100%;
	}
}

.cf8342-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #202C40;
}

.cf8342-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #EBF0F2;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 14px;
	color: #202C40;
	transition: border-color 0.3s ease;
}

.cf8342-input:focus {
	outline: none;
	border-color: #BBA364;
}

.cf8342-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23202C40' 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 15px center;
	padding-right: 40px;
	background-color: #e2e8f0; /* Match image select bg */
}

.cf8342-textarea {
	resize: vertical;
	min-height: 120px;
}

.cf8342-submit {
	width: 100%;
	padding: 15px 30px;
	background-color: #202C40;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cf8342-submit:hover {
	background-color: #31425e;
}

.cf8342-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.cf8342-message {
	margin-top: 15px;
	padding: 15px;
	border-radius: 4px;
	font-size: 14px;
}

.cf8342-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.cf8342-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
