/* Общие стили */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
	box-sizing: border-box;
}
h2 span{
 font-size: 1.7em; /* Увеличиваем размер текста */
    font-weight: 900; /* Делаем текст жирным */
    margin-bottom: 10px;
	color: black;
}

/* p {
    font-size: 1.2em;
    color: #666;
} */

table {
    width: 100%;
    border-collapse: collapse;
	margin-top: 4%;
}
th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}
tr:nth-child(even) {
    background-color: #f2f2f2; /* Цвет для четных строк */
}
tr:nth-child(odd) {
    background-color: #ffffff; /* Цвет для нечетных строк */
}
header h1{
	color: #FFDB4D; 
	text-align: center;
	margin: auto;
	margin-top: 18px;
	margin-bottom: 1%;
}
/* Стили для логотипа и верхней части */
.header-top {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}
.logo a img {
    max-height: 36px;
    width: auto;
    transition: transform 0.2s ease; /* Плавная анимация */
}
/* Стили для бургер-меню */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	position: absolute;
	top: 32px;
	left: 0px;
	z-index: 1000;
}

.menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* Стили для мобильного меню */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
    .main-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 !important; /* Убираем внутренние отступы */
        margin: 0; /* Убираем внешние отступы */
		margin-top:2%;
    }
	
	.main-nav.active {
		max-height: 500px; /* Достаточно для отображения всех пунктов */
	}
	
	.main-nav ul {
		border: none !important;
		outline: none !important;
	}
    header p {
        display: none; /* Скрываем текст в мобильной версии */
    }
	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	
	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	
	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}
	
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
     padding: 1rem;
    font-family: Arial, sans-serif;
	position: relative;
	/* overflow-x: auto; */
}

        /* Стили для модального окна */
.modal {
    display: none; /* Скрываем по умолчанию */
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 1050; /* Убедитесь, что модальное окно выше других элементов */
        }
.modal.show {
    display: flex; /* Показываем форму и центрируем */
/*     justify-content: center;
    align-items: center; */
}
.modal-dialog {
    max-width: 400px; /* Максимальная ширина формы */
    width: 90%; /* Адаптивная ширина для мобильных устройств */
    margin: auto; /* Центрирование по горизонтали */
}
/* .modal.active {
    display: flex; Показываем при активации } */
.open-full-review {
    cursor: pointer;
	font-size: 1.5rem;
}
.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/*  max-width: 400px;
    width: 100%; */
}

.modal-header {
    display: flex;
    justify-content: space-between;
     align-items: center;
	border-bottom: 1px solid #ddd;
     margin-bottom: 1rem;
}
.modal-title {
    font-size: 1.25rem;
    font-weight: bold;
}
.btn-close {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding-top: 20px;
}
.modal-header h5 {
    margin: 0;
}

.close {
    cursor: pointer;
    font-size: 1.5rem;
     color: #6c757d;
 }

.close:hover {
    color: #000;
}

.modal-body form {
    display: flex;
    flex-direction: column;
}

.modal-body label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.modal-body input {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-body button {
    padding: 0.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-body button:hover {
    background-color: #0056b3;
}
/* Стили для обёртки */
#yandex-widget-wrapper {
    position: fixed;
    right: 0px;
    top: 5px;
    border: 0px;
    z-index: 10000;
    display: block;
    width: 400px; /* Ширина виджета */
    height: 260px; /* Высота виджета */
}

/* Стили для контейнера виджета */
#auth-widget-container {
    width: 100%; /* Занимает всю ширину обёртки */
    height: 100%; /* Занимает всю высоту обёртки */
}

/* Стили для оверлея */
#yandex-widget-overlay {
    position: absolute; /* Позиционируется относительно обёртки */
    top: 0;
    left: 0;
    width: 100%; /* Полностью перекрывает обёртку */
    height: 100%; /* Полностью перекрывает обёртку */
    background-color: rgba(255, 255, 255, 0.9); /* Полупрозрачный фон */
    display: none; /* Скрыт по умолчанию */
    justify-content: center;
    align-items: center;
    z-index: 10; /* Чтобы оверлей был поверх виджета */
    cursor: not-allowed; /* Изменяем курсор, чтобы показать, что клик невозможен */
}


#yandex-widget-overlay p {
    text-align: center;
    color: #333;
    font-size: 1rem;
}

#yandex-widget-overlay a {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}
h1, h2, h3 {
    color: #2c3e50;
}

a {
    text-decoration: none;
    /* color: #fff; */
	font-size: 1.1rem;
}
blockquote {
	font-family: Arial, sans-serif;
	font-size: 1.2em;
	font-style: italic;
	color: #333;
	background-color: #f9f9f9;
	border-left: 5px solid #4299e1;
	padding: 15px;
	margin: 20px 0;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
}
blockquote::before {
	content: "🌟";
	font-size: 1.5em;
	margin-right: 10px;
}

/* Шапка */
header {
    background: linear-gradient(to bottom, #0b1a4a, #375d9b, #80c1ff);
    color: white;
    padding: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
	position: relative;
}
.auth-links {
    display: flex;
    gap: 10px;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vk-button {
    background: #0077FF;
    color: white;
}

.vk-button:hover {
    background: #0066DD;
}

.yandex-button {
    background: #FFDB4D;
    color: #000;
}

.yandex-button:hover {
    background: #F2D000;
}

.yandex-button img {
    height: 20px;
    width: auto;
}

.auth-button:hover {
    background-color: #2980b9;
}
header .logo {
    position: absolute;
    left: 0px;
    top: 20px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
/* Стили для контейнера навигации */
.main-nav nav {
    background-color: #f8f9fa; /* Светлый фон */
    padding: 2% 0 1% 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Тень */
}

.main-nav ul {
    list-style: none; /* Убираем маркеры списка */
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Перенос элементов при необходимости */
    gap: 15px; /* Расстояние между элементами */
}

.main-nav li {
    flex: 1 1 calc(25% - 15px); /* Каждый элемент занимает 25% ширины */
    text-align: center; /* Центрируем текст */
}

.main-nav a {
    display: block;
    padding: 10px; /* Отступы внутри ссылки */
    /* background-color: #4b7ef9; */ /* Голубой фон */
    color: white; /* Белый текст */
    border-radius: 5px; /* Скругление углов */
    text-decoration: none; /* Убираем подчеркивание */
    transition: background-color 0.3s; /* Плавный переход */
}

.main-nav a:hover {
    background-color: #4b7ef9; /* Темно-синий фон при наведении */
}
/* Стили для контейнера оглавления */
.book-toc nav {
    background-color: #ffffff; /* Белый фон */
    padding: 2% 0 1% 0;
}

.book-toc ul {
    list-style: none; /* Убираем маркеры списка */
    padding: 0;
    display: flex;
    flex-direction: column; /* Вертикальное расположение элементов */
    gap: 10px; /* Расстояние между элементами */
}

.book-toc li {
    text-align: left; /* Выравниваем текст по левому краю */
}

.book-toc a {
    display: block;
    padding: 10px; /* Отступы внутри ссылки */
    background-color: transparent; /* Прозрачный фон */
    color: #4b7ef9; /* Голубой текст */
    text-decoration: none; /* Убираем подчеркивание */
    border-radius: 5px; /* Скругление углов */
    transition: background-color 0.1s; /* Плавный переход */
}

.book-toc a:hover {
    background-color: #ddd; /* Серый фон при наведении */
    color: #0b1a4a; /* Темно-синий текст */
}
.blur-image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  opacity: 0.8;
  z-index: 1;
}
.centered-container{
    display: flex; /* Делаем контейнер flex-контейнером */
    justify-content: center; /* Выравнивание по горизонтали */
}
.sharp-image {
  position: relative;
  width: 90%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Стили для лид-магнита */
.lead-section {
  margin: 24px 0;
  padding: 0 8px;
}

.benefits-list,
.problems-list,
.contents-list {
  margin: 16px 0;
  padding-left: 24px;
}

.benefits-list li,
.contents-list li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.5;
}

.problems-list li {
  margin-bottom: 10px;
  color: #e53e3e;
  font-weight: 500;
}

.highlight {
  font-weight: 600;
  color: #2b6cb0;
  margin: 20px 0 10px;
  display: block;
}

/* Кнопка получения */
.cta-button {
  background-color: #38a169;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  margin: 30px auto;
  display: block;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  max-width: 300px;
}

.cta-button:hover {
  background-color: #2f855a;
}

.hero-specialist-section {
    background: linear-gradient(to right, #4b7ef9, #5cb0f2);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-specialist-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-specialist-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-specialist-subtitle {
    font-size: 18px;
}

.hero-specialist-link {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
}

.hero-specialist-link:hover {
    text-decoration: none;
    color: #fff;
}

#quiz_form {text-align:center; margin-top:5%; margin-bottom:5%}

/* Цитата клиента */
.client-quote {
  font-style: italic;
  color: #4a5568;
  border-left: 3px solid #4299e1;
  padding-left: 16px;
  margin: 16px 0;
}

/* Таблица результатов */
.results-table {
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
  border-collapse: collapse;
}

.table-row {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
}

.table-row.header {
  font-weight: 600;
  background-color: #f7fafc;
}

.table-cell {
  flex: 1;
  padding: 12px 8px;
  text-align: left;
}

.table-cell.highlight {
  color: #2b6cb0;
  font-weight: 600;
}

/* Заключение клиента */
.client-conclusion {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed #cbd5e0;
}

/* Адаптивность таблицы */
@media (max-width: 600px) {
  .table-cell {
    padding: 8px 4px;
    font-size: 14px;
  }
}
/* Герой-блок */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.hero1-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
}
.hero-title {
	font-size: 2.5rem;
	margin-bottom: 15px;
	line-height: 1.3;
}

.highlight {
	color: #2563eb;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: #4b5563;
	margin-bottom: 40px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 5px 0;
	text-align: left;
}

.benefit-item {
	display: flex;
	gap: 15px;
	background: #f9fafb;
	padding: 5px;
	border-radius: 12px;
	transition: transform 0.3s;
}

.benefit-item:hover {
	transform: translateY(-5px);
}

.benefit-icon {
	font-size: 1.5rem;
	flex-shrink: 0;
	margin-top: -8px;
}

.benefit-text h3 {
	margin: 0 0 10px 0;
	font-size: 1.1rem;
}
.main-image {
    width: 100%; /* На мобильных устройствах занимает всю ширину */
    display: block;
    border-radius: 15px;
}

.overlay-image {
    position: absolute;
    bottom: -10%; /* Сдвигаем вниз */
    right: 5%; /* Сдвигаем вправо */
    width: 50%; /* Уменьшаем размер на мобильных устройствах */
    height: auto;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.text-container {
    padding: 20px;
   }

/* Преимущества */
.features {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff; /* Фон секции */
}

.features h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Позволяет блокам переноситься на новую строку */
    gap: 20px; /* Отступы между блоками */
}

.feature-item {
    flex: 1 1 calc(33.33% - 40px); /* Три блока в строке с отступами */
    padding: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.feature-item img {
    width: 250px; /* Размер иконки */
    height: 250px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1em;
    color: #666;
}

/* Отчеты */
.reports {
    padding: 1px 0;
    text-align: center;
}

.report-examples {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Отступ между изображениями */
    margin: 0 auto;
    max-width: 1200px; /* Ограничение ширины для десктопа */
}

.report-examples img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
/* Основная секция письмо*/
.reflection-section {
  width: 90%;
  max-width: 48rem; /* ~768px, аналог max-w-3xl */
  margin: 0 auto;
  padding: 2.5rem 1rem; /* py-10 px-4 */
  color: #374151; /* text-gray-800 */
}

/* Заголовок */
.reflection-title {
  font-size: 1.5rem; /* text-3xl */
  font-weight: 700; /* font-bold */
  margin-bottom: 1.5rem; /* mb-6 */
  color: #111827;
}

/* Основной контент */
.reflection-content {
  line-height: 1.6;
  font-size: 1.125rem; /* prose-lg */
  color: #4b5563; /* prose-gray */
}

/* Текст */
.reflection-text {
  margin-bottom: 1.5rem;
}

/* Курсив */
.italic {
  font-style: italic;
}

/* Выделение */
.highlight {
  color: #1e40af; /* синий для выделения */
  font-weight: 600;
}

/* Подзаголовок */
.reflection-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem 0;
  color: #111827;
}

/* Разделитель */
.reflection-divider {
  border: 0;
  height: 1px;
  background-color: #e5e7eb;
  margin: 2rem 0; /* my-8 */
}

/* Блок с кнопками */
.action-buttons {
  margin-top: 2.5rem; /* mt-10 */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

/* Основная кнопка */
.primary-button {
  display: inline-block;
  background-color: #2563eb; /* bg-blue-600 */
  color: white;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  border-radius: 0.75rem; /* rounded-xl */
  font-size: 1.125rem; /* text-lg */
  text-align: center;
  transition: background-color 0.2s;
}

.primary-button:hover {
  background-color: #1d4ed8; /* hover:bg-blue-700 */
}

/* Вторичная ссылка */
.secondary-link {
  display: inline-block;
  color: #2563eb; /* text-blue-600 */
  font-size: 1rem; /* text-base */
  transition: text-decoration 0.2s;
}

.secondary-link:hover {
  text-decoration: underline;
}

/* Постскриптум */
.postscript {
  margin-top: 3rem; /* mt-12 */
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
}

.postscript-link {
  color: #2563eb; /* text-blue-600 */
  transition: text-decoration 0.2s;
}

.postscript-link:hover {
  text-decoration: underline;
}
/* Кейсы */
.cases {
    padding: 0px 0;
    text-align: center;
}

.case-list {
    display: flex;
    justify-content: space-around;
    margin-top: 0px;
}

.case-item {
    width: 45%;
}

.case-item img {
    width: 100%;
    border-radius: 10px;
}
/* Кейсы 1 */
.post-container {
  max-width: 90%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  color: #333;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.post-header {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}

.avatar-keys {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ccc;
  margin-right: 12px;
  background-size: cover;
}

.user-info {
  flex-grow: 1;
}

.user-name {
  font-weight: bold;
  font-size: 16px;
}

.user-nickname {
  color: #657786;
  font-weight: normal;
}

.post-date {
  color: #657786;
  font-size: 14px;
}

.post-content {
  line-height: 1.4;
}

.post-title {
  font-size: 20px;
  margin: 0 0 16px 0;
  color: #1c2938;
}

.post-text {
  margin: 0 0 16px 0;
  font-size: 15px;
}

.post-text.bold {
  font-weight: bold;
}

.post-image {
  max-width: 90%;
  height: auto; /* Сохраняем пропорции */
  max-height: 300px; /* Максимальная высота */
  object-fit: cover; /* Аналог background-size: cover */
  border-radius: 8px;
  margin: 16px auto;
  display: block; /* Убираем лишнее пространство под img */
}
.modal-content-feedback {
    max-height: 90vh; /* 90% высоты экрана */
    overflow-y: auto; /* Включить вертикальный скролл при переполнении */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

/* Для плавности скролла на мобильных */
.modal-content-feedback::-webkit-scrollbar {
    width: 6px;
}

.modal-content-feedback::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #333;
    z-index: 999;
    background: rgba(255,255,255,0.8);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
/* Стили для кейса */
.client-info {
  margin: 24px 0;
  padding: 16px;
  background-color: #f8fafc;
  border-radius: 8px;
}

.case-section {
  margin: 32px 0;
}

.case-image {
  width: 90%;
  max-width: 800px;
  margin: 16px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.content-title {
  font-size: 18px;
  margin: 16px 0 8px 0;
}

.content-subtitle {
  font-size: 16px;
  margin: 16px 0 8px 0;
  color: #2d3748;
}

.info-list {
  margin: 0 0 16px 0;
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 8px;
}

.read-more-btn {
  display: block;
  background: transparent;
  border: 1px solid #1da1f2;
  color: #1da1f2;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin: 16px auto;
  cursor: pointer;
  transition: background 0.2s;
  width: max-content;
}

.read-more-btn:hover {
  background: rgba(29, 161, 242, 0.1);
}

.results-keys {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e1e8ed;
}

.results-text {
  font-family: monospace;
  font-size: 14px;
  color: #657786;
}
.platform-results {/*  Убрать */
  display: flex;
  gap: 20px;
  margin: 16px 0;
}

.platform {
  text-align: center;
}

/* Контейнер для платформ */
.platforms-container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

/* Отдельная платформа */
.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

/* Изображение платформы */
.platform-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 8px;
  background-color: #f0f0f0; /* Фон на случай отсутствия изображения */
  padding: 10px; /* Отступ внутри иконки */
  box-sizing: border-box;
}

/* Название платформы */
.platform-name {
  margin: 0;
  font-size: 16px;
  color: #2d3748;
  text-align: center;
}
.platform-name {
  margin: 0;
  font-size: 16px;
  color: #2d3748;
}

.results-list {
  margin: 16px 0;
  padding-left: 20px;
  list-style-type: none;
}

.results-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.results-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #1da1f2;
  border-radius: 50%;
}

.highlight {
  font-weight: bold;
  color: #1da1f2;
}
/* Сетка рекламных изображений */
.ad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.ad-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Карусель */
.carousel-keys {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0;
  margin: 16px 0;
  scroll-snap-type: x mandatory;
}

.carousel-image {
  width: 90%;
  max-width: 400px;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

/* Результаты по месяцам */
.month-results {
  margin: 32px 0;
  padding-bottom: 24px;
  border-bottom: 1px dashed #e2e8f0;
}

.month-title {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 12px;
}

.revenue {
  color: #2b6cb0;
  font-weight: 600;
}
.small {
  font-size: 14px;
  color: #718096;
}
/* Список результатов */
.results-list {
  margin: 20px 0;
  padding-left: 24px;
}

.results-list li {
  margin-bottom: 12px;
  position: relative;
  line-height: 1.5;
}

.results-list li::before {
  content: "▫️";
  position: absolute;
  left: -24px;
}
.requirements,
.work-process,
.audience-selection,
.campaign-setup,
.retargeting,
.conclusions {
  margin: 24px 0;
  padding-top: 16px;
  border-top: 1px solid #e1e8ed;
}

.audience-list {
  margin: 16px 0;
  padding-left: 20px;
  list-style-type: none;
}

.audience-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.audience-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1da1f2;
}

.service-name {
  font-weight: bold;
  color: #1a73e8;
}

.conclusions-list {
  margin: 16px 0;
  padding-left: 20px;
}

.conclusions-list li {
  margin-bottom: 12px;
  padding-left: 8px;
}
/* Тарифы */
.pricing {
    padding: 60px 0;
    text-align: center;
}

.pricing-plans {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.plan {
    width: 30%;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
}

.plan .price {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

/* Футер */
footer {
    background: linear-gradient(to top, #0b1a4a, #375d9b, #4f93d3);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    margin-bottom: 20px;
}
.footer-contacts { width: 40%; }
.footer-social { width: 30%; }
.footer-subscribe { width: 30%; }
.footer-section h3 {
    margin-bottom: 20px;
	color: white;
}

/* Стили для формы подписки */
.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
	margin-top: 3%;
}

.subscription-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    max-width: 100%;
}

.subscription-form button {
    background-color: #e67e22;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
	margin: auto;
}

.image-container {
    position: relative;
    width: 50%;
}

.main-image {
    width: 64%;
    display: block;
	border-radius: 15px;
}

.overlay-image {
    position: absolute;
    bottom: -13%;
    right: 6%;
    width: 59%;
    height: auto;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px; /* Закругление краев */
}

.text-container {
    width: 45%;
    padding: 20px;
}

.benefits-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Фон секции */
}

.benefits-section h2 span {
    font-size: 1.6em;
    font-weight: bold;
    display: block;
    margin-bottom: 40px;
    color: black;
}

.benefits-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Позволяет блокам переноситься на новую строку */
    gap: 20px; /* Отступы между блоками */
}

.benefit-block {
    flex: 1 1 calc(33.33% - 40px); /* Три блока в строке с отступами */
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.benefit-block .icon {
    font-size: 3em; /* Размер иконки */
    margin-bottom: 15px;
}

.benefit-block h3 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-block p {
    font-size: 1em;
    color: #666;
}

.testimonials-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #e9e9e9;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial {
    flex: 0 0 33.33%;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.avatar-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}
.avatar-container:hover {
transform: scale(1.1)
}
.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer; /* Стандартный указатель "кликабельно" */
    transition: transform 0.2s ease; /* Добавим плавный эффект при наведении */

}

.avatar:hover {
    transform: scale(1.05); /* Легкое увеличение при наведении */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Тень для эффекта "приподнятости" */
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
	padding-bottom: 5px;
}

.carousel-prev:hover, .carousel-next:hover {background-color: rgba(0, 0, 0, 0.8);}
.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}
.final-offer-block h2{
	text-align: center;

}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.modal-avatar {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.vk-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0077FF; /* Синий фон */
    color: white; /* Белый текст */
    border: none;
    border-radius: 10px; /* Закруглённые углы */
    padding: 0px 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17pt;
    font-weight: 500;
    cursor: pointer;
    height: 56px;
    text-decoration: none;
    transition: background-color 0.2s;
    gap: 12px; /* Расстояние между лого и текстом */
}

/* Белый логотип VK (без фона) */
.fa-vk {
    color: white; /* Белый цвет */
    font-size: 36px; /* Размер лого */
    line-height: 1;
    margin-right: 8px; /* Отступ от текста */
}
/* Общий стиль для оверлея Яндекс*/


.auth-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
	margin: auto;
}

.auth-button-container {
    position: relative;
    height: 50px; /* Фиксированная высота для всех кнопок */
	margin: auto;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    height: 100%;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}
.auth-button-in{
    background-color: #0077FF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
	margin: auto;
    position: absolute;  /* Позиционируем относительно .container */
    right: 0%; 
	top: 0;
	height: 36px;
}
/* Стили для VK */
.vk-button {
    background: #0077FF;
    color: white;
}

/* Стили для Яндекс */
.yandex-button {
    background: #FFDB4D;
    color: #000;
}

/* Оверлей */
.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0; /* По умолчанию скрыт */
    pointer-events: none; /* Не реагирует на клики */
    transition: opacity 0.3s ease; /* Плавная анимация */
}

/* Иконки */
.auth-button img {
    width: 32px;
    height: 32px;
}

.auth-button .fab {
    font-size: 32px;
}

/* Базовые стили секции */
.services_new {
    --primary-color: #4361ee;  /* Основной акцентный цвет */
    --text-color: #2b2d42;     /* Цвет текста */
    --bg-color: #f8f9fa;       /* Фон секции */
    --card-bg: #ffffff;        /* Фон карточек */
    --transition: all 0.3s ease;
    
    background-color: var(--bg-color);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.services_new__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Заголовки */
.services_new__title {
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.services_new__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.services_new__subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Сетка услуг */
.services_new__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

/* Карточки услуг */
.services_new__item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services_new__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.services_new__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services_new__item:hover::before {
    height: 100%;
}

.services_new__item-title {
    padding-left: 0; /* Убираем отступ для точки */
    display: flex;
    align-items: center;
    gap: 15px; /* Расстояние между иконкой и текстом */
}
.services_new__item-title i {
    color: var(--primary-color);
    font-size: 1.8rem; /* Размер иконки */
    width: 40px; /* Фиксированная ширина для выравнивания */
    text-align: center;
}

.services_new__item-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Декоративные элементы */
.services_new::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

    .button-row-rk {
        display: flex;
        gap: 10px;
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .nav-button-rk {
        background-color: #4b7ef9;
        color: white;
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
        transition: background-color 0.3s;
        white-space: nowrap;
    }
    
    .nav-button-rk:hover {
        background-color: #3a6ae0;
    }

@media (max-width: 768px) {
    .services_new__items {
        grid-template-columns: 1fr;
    }
    
    .services_new__title {
        font-size: 2rem;
    }
    
    .services_new__subtitle {
        font-size: 1rem;
    }
    .testimonial {flex: 0 0 100%;}
	header h1 {font-size:1.5em;padding-left: 36px;}
    .report-examples {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
  .case-image {
    width: 100%;
  }
  .ad-grid {
    grid-template-columns: 1fr;
  }
  .benefits-list,
  .problems-list,
  .contents-list {
    padding-left: 20px;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 16px;
    max-width: 100%;
  }
  .carousel-image {
    width: 95%;
  }S
    .report-examples img {
        max-width: 95% !important; /* Принудительная ширина */
        margin: 0 auto; /* Центрирование */
    }
  .platforms-container {
    width: 90%;
    gap: 20px;
  }
  
  .platform {
    min-width: 100px;
  }
  
  .platform-image {
    max-width: 100%;
    max-height: 100%;
  }
}

/* Стили чат-виджета */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-icon {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.chat-icon:hover {
  transform: scale(1.1);
}

.chat-container {
  width: 350px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: #2c3e50;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  height: 300px;
  padding: 15px;
  overflow-y: auto;
  background: #f5f5f5;
}

.chat-footer {
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column; /* Располагаем элементы вертикально */
  gap: 10px; /* Отступ между элементами */
}
.message {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
}

.user-message {
  background: #e3f2fd;
  margin-left: auto;
  border-bottom-right-radius: 0;
}

.ai-message {
  background: #f1f1f1;
  margin-right: auto;
  border-bottom-left-radius: 0;
}

.time {
  display: block;
  font-size: 10px;
  color: #666;
  text-align: right;
  margin-top: 4px;
}
/* стили для поля ввода */
.message-input-container {
  width: 100%;
}

.message-input-container input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box; /* Чтобы padding не влиял на ширину */
}

.chat-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
}

.chat-buttons .btn {
  flex: 1; /* Кнопки занимают равное пространство */
  padding: 10px;
}
/* #update-groups-button{padding: 0px;} */
.update-groups-button,.tools-submit-button {
    /* Базовые стили */
    position: relative;
    padding: 12px 24px 12px;
    background: linear-gradient(135deg, #2563eb, #03186f);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
	width:50%;
	display: block;
	margin: 5% auto;
	display: flex;
}
.update-groups-button a,.tools-submit-button a {color:white}
.update-groups-button span,.tools-submit-button span{margin: auto;}
/* Диагональная полоска (постоянная анимация) */

.update-groups-button::before,.tools-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30%; /* Начальная позиция (подберите под угол) */
    width: 5%; /* Ширина полоски */
    height: 200%; /* Перекрывает высоту кнопки под углом */
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.9),
        transparent
    );
    transform: rotate(-25deg);
    animation: runningStripes 2s linear infinite;
}

@keyframes runningStripes {
    0% {
        left: -30%;
        top: -50%;
    }
    100% {
        left: 120%;
        top: -50%;
    }
}

/* Эффекты при наведении (необязательно) */
.update-groups-button:hover,.tools-submit-button:hover {
    box-shadow: 0 6px 20px rgba(74, 108, 247, 0.4);
    transform: translateY(-2px);
}

.update-groups-button:active,.tools-submit-button:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .modal-dialog {
        max-width: 100%; /* Занимает всю доступную ширину */
        margin: 20px; /* Отступы сверху и снизу */
    }
    .container_restr h1{
    	 font-size:1em; 
	 }
    .container_restr p{
    	 font-size: 0.8em; 
	 }
    .update-groups-button,.tools-submit-button{
	    margin: 0 auto 3%;

}
    .modal-content {
        padding: 15px;
    }

    .modal-title {
        font-size: 1.1rem;
    }

    input[type="text"],
    input[type="password"] {
        font-size: 0.9rem;
    }

    .login-button {
        font-size: 0.9rem;
    }
   header {
    flex-direction: column;
    text-align: center;
    }
.text-container {
    width: 100%; /* На мобильных устройствах занимает всю ширину */
	 text-align: center; /* Центрируем текст на мобильных устройствах */
    }
.hero-section {
    flex-direction: column; /* На мобильных устройствах меняем направление на вертикальное */
    }
    .auth-links {
        margin-top: 10px;
    }
    nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    nav ul li {
        width: 100%;
        margin-bottom: 1px; /* Минимальный отступ между пунктами */
        line-height: normal; /* Сохраняем читаемость текста */
    }
    nav ul li a {
        display: block;
        padding: 2px 15px; /* Достаточные отступы для кликабельной области */
        /* background: #f5f5f5; */ /* Фон для каждого пункта */
        transition: background 0.3s ease;
    }

	.image-container {
		width: 100%; /* На мобильных устройствах занимает всю ширину */
		margin-bottom: 60px;/* Отступ между изображениями и текстом */
	}
    .hero-section {
        flex-direction: column; /* Вертикальное расположение на мобильных устройствах */
    }
    .overlay-image {
        bottom: -14%;
        right: 0%;
        width: 60%;
    }

    h2 span {
        font-size: 1.5em; /* Уменьшаем размер заголовка */
    }
   .testimonials-section h2 span {font-size: 1em}
    p {
        font-size: 1em; /* Уменьшаем размер текста */
    }
    .features h2 {
        font-size: 1.8em; /* Уменьшаем размер заголовка */
    }

    .feature-item {
        flex: 1 1 calc(50% - 20px); /* Два блока в строке на планшетах */
    }
    .testimonial {
         flex: 0 0 100%;  /* На десктопе показываем три отзыва */
    }
    .benefits-section h2 span {
        font-size: 1.4em; /* Уменьшаем размер заголовка */
    }

    .benefit-block {
        flex: 1 1 calc(50% - 20px); /* Два блока в строке на планшетах */
    }
    .text-container {
        width: 90%;
        padding: 20px;

    }
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
		text-align: center;
    }
    
    .subscription-form {
        max-width: 300px;
    }
    .subscription-form {
        max-width: 300px;
        margin: auto;
    }
	footer{padding:1rem}
}

@media (max-width: 480px) {
    .overlay-image {
        bottom: -3%; /* Ещё меньше сдвигаем вниз */
        right: 15%; /* Ещё больше сдвигаем вправо */
        width: 70%; /* Ещё больше увеличиваем размер на маленьких экранах */
    }
    header h1 {
        font-size: 1.3em;
        padding-top: 4%;
        padding-left: 24px;
    }
    h2 span {
        font-size: 1.3em; /* Ещё меньше размер заголовка */
    }
    .update-groups-button{
		padding: 10px 12px;
    }
	.hero-title {
    font-size: 1.5rem;}
	.features {
    padding: 0px 20px;}
    .auth-button-in {
	right: 3%;
	}

    .features h2 {
        font-size: 1.5em; /* Ещё меньше размер заголовка для маленьких экранов */
    }

    .feature-item {
        flex: 1 1 100%; /* Один блок в строке на мобильных */
        padding: 1px 1px;
    }

    .feature-item img {
        width: 80px; /* Уменьшаем размер иконки */
        height: 80px;
    }

    .feature-item h3 {
        font-size: 1.3em; /* Уменьшаем размер заголовка блока */
    }

    .feature-item p {
        font-size: 0.9em; /* Уменьшаем размер текста */
    }
    .benefits-section h2 span {
        font-size: 1.2em; /* Ещё меньше размер заголовка для маленьких экранов */
    }

    .benefit-block {
        flex: 1 1 100%; /* Один блок в строке на мобильных */
    }

    .benefit-block .icon {
        font-size: 2.5em; /* Уменьшаем размер иконки */
    }

    .benefit-block h3 {
        font-size: 1.3em; /* Уменьшаем размер заголовка блока */
    }

    .benefit-block p {
        font-size: 0.9em; /* Уменьшаем размер текста */
    }
    .subscription-form button {
        width: 100%;
    }
  .chat-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
  }
    .vk-login-button {
        font-size: 15pt;
        height: 48px;
        padding: 10px 16px;
        gap: 8px;
    }

    .fa-vk {
        font-size: 20px;
    }
	footer{padding:0}
}
.content-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* Отступ между картинкой и текстом */
    margin: 15px 0;
    align-items: flex-start; /* Выравнивание по верхнему краю */
}

/* Картинка слева (30% ширины на десктопе) */
.image-content {
    flex: 0 0 30%; /* Фиксированная ширина, не растягивается */
}

/* Текст справа (занимает оставшееся место) */
.text-content {
    flex: 1; /* Растягивается на всё доступное пространство */
    min-width: 200px; /* Чтобы текст не сжимался слишком сильно */
}

/* Картинка на всю ширину внутри своего блока */
.creative-img {
    /* width: 100%; */
    height: auto;
    border-radius: 8px; /* Опционально */
}

/* На мобильных — картинка сверху, текст снизу */
@media (max-width: 768px) {
    .image-content {
        flex: 0 0 100%; /* Картинка на всю ширину */
    }
}

