.ccf-2311-wrapper {
	font-family: inherit;
	padding: 10px;
}

.ccf-2311-container {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #C2D8E5;
}

@media (min-width: 768px) {
	.ccf-2311-container {
		flex-direction: row;
	}
}

.ccf-2311-questions-side,
.ccf-2311-download-side {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ccf-2311-questions-inner {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.ccf-2311-questions-title {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #B45A34;
	text-align: center;
}

.ccf-2311-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ccf-2311-list-item {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.ccf-2311-list-item:last-child {
	margin-bottom: 0;
}

.ccf-2311-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	margin-right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #B45A34;
}

.ccf-2311-icon svg {
	width: 100%;
	height: 100%;
	fill: #B45A34;
}

.ccf-2311-text {
	font-size: 16px;
	font-weight: 600;
	color: #000;
	line-height: 1.4;
}

.ccf-2311-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
}

@media (min-width: 768px) {
	.ccf-2311-divider {
		width: 1px;
		height: auto;
		margin: 20px 0;
	}
}

.ccf-2311-download-side {
	background-color: #C2D8E5;
	background-size: cover;
	background-position: center;
	position: relative;
}

.ccf-2311-download-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.4); /* Optional: add an overlay control later if needed, hardcoded semi-transparent for now so text is legible if image is busy */
	z-index: 1;
	pointer-events: none;
	display: none; /* Hidden by default unless needed */
}

.ccf-2311-download-content-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ccf-2311-download-header {
	padding: 30px 30px 0;
	text-align: center;
}

.ccf-2311-download-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0;
	color: #000;
	line-height: 1.3;
}

.ccf-2311-download-inner {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ccf-2311-form-container {
	display: flex;
	justify-content: center;
}

.ccf-2311-submit {
	width: 100%;
	max-width: 300px;
	padding: 15px;
	border: none;
	background-color: #B45A34;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	text-transform: uppercase;
	transition: opacity 0.3s ease;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.ccf-2311-submit:hover {
	opacity: 0.9;
	color: #ffffff;
}