.choose-block {
	background: #fff;
	border-radius: 20px;
	padding: 60px 40px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	margin: 60px auto;
	max-width: 1100px;
}

body.dark-theme .choose-block {
	background: #1a1a1a;
	color: #eee;
}

body:not(.dark-theme) .choose-block {
	background: #f1f1f1;
	color: #111;
	border-radius: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.choose-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
}

.choose-content .column {
	flex: 1 1 450px;
}

.choose-content h2 {
	font-size: 24px;
	margin-bottom: 16px;
	color: #333;
}

body.dark-theme .choose-content h2 {
	color: #fff;
}

.choose-content p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.choose-content ul {
	padding-left: 20px;
	margin: 0;
}

.choose-content li {
	margin-bottom: 8px;
	line-height: 1.5;
	position: relative;
}

.choose-content li::before {
	content: '•';
	color: #7c86ff;
	position: absolute;
	left: -16px;
}

body.dark-theme .choose-content li::before {
	color: #8da1ff;
}

@media (max-width: 768px) {
	.choose-content {
		flex-direction: column;
	}
}
