.acb-split-container {
	width: 100%;
	background-color: #0b071e;
	box-sizing: border-box;
}

.acb-split-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
}

/* Left Column */
.acb-split-image-col {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.acb-split-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.acb-split-bg-pattern {
	position: absolute;
	width: 120%;
	max-width: none;
	z-index: 1;
	opacity: 0.3;
	pointer-events: none;
}

.acb-split-person-img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Right Column */
.acb-split-content-col {
	flex: 1;
}

.acb-split-subtitle {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-weight: 600;
}

.acb-split-title {
	font-size: 42px;
	font-family: 'Georgia', serif;
	line-height: 1.2;
	margin: 0 0 24px 0;
}

.acb-split-text {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

/* Buttons Section */
.acb-split-buttons {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 25px;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.acb-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}

.acb-btn-primary {
	cursor: pointer;
}

.acb-btn-secondary {
	cursor: pointer;
}

.acb-split-divider {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin: 30px 0 25px 0;
}

.acb-split-quote {
	font-size: 22px;
	font-family: 'Georgia', serif;
	font-style: italic;
	line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.acb-split-inner {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}

	.acb-split-buttons {
		justify-content: center;
	}

	.acb-split-divider {
		margin: 25px auto;
		width: 60%;
	}
}