.popup-menu {
    list-style: none;
    padding: 18px;
    margin: 0;
    column-count: 2; /* Число колонок */
    column-gap: 20px; /* Расстояние между колонками */
    max-width: 600px;
}

.popup-menu li {
    margin: 0;
    padding: 0;
    break-inside: avoid; /* Не разрывать элементы между колонками */
    page-break-inside: avoid; /* Для старых браузеров */
}

.popup-menu li a {
    display: block;
    color: #222 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 4px 0;
    margin-bottom: 6px;
}

.popup-menu li a:hover {
    text-decoration: underline !important;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
    .popup-menu {
        column-count: 1; /* Одна колонка */
        padding: 12px;
    }
}

/* Класс для двухколоночного текста */
.uc-two-column-text .t-text {
	column-count: 2;
	column-gap: 40px;
	text-align: left;
	line-height: 1.5;
	margin: 20px 0;
	hyphens: auto;
	text-align-last: left;
}

/* Отключаем колонки на мобильных устройствах */
@media (max-width: 768px) {
	.uc-two-column-text .t-text {
		column-count: 1;
	}
}

* {
	font-family: 'Photivus', Arial, sans-serif;
}

body {
	color: #333;
	line-height: 1.5;
	font-size: 20px;
}

h1 {
	font-size: 64px;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: normal;
}

h2,
h3 {
	font-weight: normal;
	text-align: center;
	margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

p {
	margin-bottom: 15px;
}

.text-center {
	text-align: center;
}

/* Стили для блока с услугами */
.services-container {
	background-color: #000;
	padding: 60px 0;
}

.services-title {
	font-family: 'Photivus', Arial, sans-serif;
	font-size: 32px;
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
	margin-bottom: 20px;
}

.service-block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 40px;
}

.service-media,
.service-content {
	width: 50%;
	box-sizing: border-box;
}

.service-media iframe {
	width: 100%;
	height: 320px;
	border: none;
}

.service-content {
	padding: 25px;
	background-color: #333;
	color: #fff;
	height: 320px;
	overflow-y: auto;
	font-family: 'Photivus', Arial, sans-serif;
}

.service-title {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 15px;
	color: #fff;
	text-transform: uppercase;
}

.service-description {
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 1.5;
}

.service-list-title {
	font-size: 16px;
	font-weight: bold;
	margin: 12px 0 8px;
}

.service-list {
	font-size: 15px;
	margin-bottom: 12px;
	padding-left: 18px;
	line-height: 1.4;
	list-style-type: none;
	/* Убираем стандартные маркеры */
}

.service-list li {
	margin-bottom: 6px;
	position: relative;
}

.service-list li::before {
	content: "•";
	color: #c004b5;
	position: absolute;
	left: -12px;
}

/* Четные блоки - меняем порядок */
.service-block:nth-child(even) .service-media {
	order: 2;
}

.service-block:nth-child(even) .service-content {
	order: 1;
}

/* Адаптивность */
@media (max-width: 992px) {

	.service-media,
	.service-content {
		width: 100%;
	}

	.service-media iframe {
		height: 320px;
	}

	.service-content {
		height: auto;
		max-height: 320px;
	}

	/* Отменяем порядок для мобильных */
	.service-block:nth-child(even) .service-media,
	.service-block:nth-child(even) .service-content {
		order: 0;
	}
}

@media (max-width: 768px) {
	.service-media iframe {
		height: 250px;
	}

	.service-content {
		padding: 20px;
	}

	.service-title {
		font-size: 20px;
	}

	.service-description,
	.service-list-title,
	.service-list {
		font-size: 14px;
	}
}

/* Стили для скролла текстового блока */
.service-content::-webkit-scrollbar {
	width: 6px;
}

.service-content::-webkit-scrollbar-track {
	background: #444;
}

.service-content::-webkit-scrollbar-thumb {
	background: #c004b5;
	border-radius: 3px;
}

/* Скрытый текст */
.section a {
    color: inherit !important;
}

.expandable-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.expandable-content.show {
	max-height: 1000px;
}

.expand-toggle {
	color: #c004b5;
	cursor: pointer;
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	font-size: 18px;
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #c004b5;
	border-radius: 50px;
	transition: all 0.3s;
}

.expand-toggle:hover {
	background-color: rgba(192, 4, 181, 0.1);
	text-decoration: none;
}

/* Уменьшаем размер текста для мобильных */
@media (max-width: 768px) {
	body {
		font-size: 18px;
	}

	p,
	.expand-toggle {
		font-size: 18px;
	}

	h2 {
		font-size: 28px;
	}
}