* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		font-family: 'Open Sans', Arial, sans-serif;
		font-weight: 500; /* Вказуємо явно, щоб підтягнувся твій файл */
		background: none;
		line-height: 1.5;
		color: #222;
		margin: 0;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 15px;
	}
	@font-face {
	  font-family: 'Open Sans';
	  font-style: normal;
	  font-weight: 500;
	  font-display: swap;
	  src: url('/fonts/open-sans-500.woff2') format('woff2');
	}

	@font-face {
	  font-family: 'Open Sans';
	  font-style: normal;
	  font-weight: 700;
	  font-display: swap;
	  src: url('/fonts/open-sans-700.woff2') format('woff2');
	}

	/* ========== ХЕДЕР ========== */
	.header {
		background: #990066;
		box-shadow: 0 1px 5px rgba(0,0,0,0.05);
	}

	.header__top {
		background: #669900;
		padding: 8px 0;
		border-bottom: 1px solid #ddd;
	}

	.header__contacts {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.header__phones {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.header__phones img {
		display: block;
		border: 0;
		outline: none;
		box-shadow: none;
	}

	.header__social a {
		display: inline-block;
		margin-left: 5px;
		text-decoration: underline;
		color: #fff;
		transition: color 0.2s ease;
	}

	.header__social a:hover {
		color: #990066;
	}

	.header__main {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		padding: 15px 0;
		gap: 15px;
		color: #fff;
	}

	.header__main a,
	.header__main .lang-btn,
	.header__main .title div,
	.header__main .title p {
		color: #fff;
	}

	.logo a {
		text-decoration: none;
		font-size: 24px;
		font-weight: bold;
		color: #fff;
	}

	.logo span {
		font-size: 12px;
		font-weight: normal;
		color: rgba(255,255,255,0.85);
		display: block;
	}

	.title {
		text-align: center;
		flex: 1;
	}

	.title p {
		margin: 5px 0 0;
	}

	.header__lang {
		display: flex;
		gap: 5px;
	}

	.lang-btn {
		display: inline-block;
		padding: 4px 10px;
		background: rgba(255,255,255,0.2);
		font-size: 12px;
		font-weight: bold;
		text-decoration: none;
		color: #fff;
	}

	.lang-btn.active {
		background: rgba(255,255,255,0.4);
		font-weight: bold;
	}

/* ========== МЕНЮ ========== */
.nav {
    background: #006699;
}
.menu-icon {
    display: none;
    cursor: pointer;
    padding: 12px 20px;
    color: #fff;
    font-size: 20px;
    background: #006699;
}
.nav-list {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding-left: 0;
}
.nav-list li {
    margin: 0;
}
.nav-list a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

/* правила для активного пункта */
.nav-list a:hover,
.nav-list a.active {
    background: #669900;
    color: #fff;
    text-decoration: underline;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-left: 20px;
        margin: 0;
        list-style-type: disc;
        color: #fff;            /* маркеры станут белыми */
        text-align: left;       /* выравнивание текста всего списка по левому краю */
    }
    .nav-list.show {
        display: flex;
    }
    .nav-list li {
        text-align: left;       /* элементы списка по левому краю */
        margin: 0;
        width: 100%;
    }
    .nav-list a {
        display: inline-block;
        padding: 8px 12px;
        color: #fff;            /* текст ссылок белый */
        text-decoration: none;
    }
}

	/* ========== ОСНОВНОЙ КОНТЕНТ ========== */
	.content-wrapper {
		display: flex;
		flex-direction: column;
		margin: 30px 0;
	}

	.sidebar {
		flex: 1;
		min-width: 240px;
		background: #fff;
		padding: 0;
	}

	.main-content {
		flex: 3;
		padding: 0;
	}

	.main-content h3 {
		color: #2D5A27;
		margin: 20px 0 10px;
		font-size: 18px;
	}

	.main-content h4 {
		color: #2D5A27;
		margin: 15px 0 8px;
	}

	.main-content p {
		margin-bottom: 12px;
	}

	.main-content ul {
		margin: 10px 0 15px 25px;
	}

	.main-content li {
		margin: 5px 0;
	}

	.main-content a {
		color: #006699;
		text-decoration: none;
	}

	.main-content a:hover {
		text-decoration: underline;
	}

	/* ========== КНОПКИ ========== */
	.btn-red {
		display: inline-block;
		background: #CC3300;
		color: #fff;
		padding: 10px 20px;
		text-decoration: none;
		font-weight: bold;
		margin: 10px 0;
		transition: background 0.2s;
	}

	.btn-red:hover {
		background: #aa2a00;
	}

	.btn-rez {
		display: inline-block;
		background: #ffffff;
		border: 1px solid #669900;
		color: #006699;
		padding: 10px 20px;
		margin: 10px 0;
		font-weight: bold;
		text-decoration: none;
		transition: color 0.2s ease;
	}

	.btn-rez:hover {
		color: #669900;
		text-decoration: underline;
		background: #ffffff;
		border-color: #669900;
	}

	hr {
		border: none;
		border-top: 1px solid #ddd;
		margin: 20px 0;
	}

	/* ========== НОВОСТИ ========== */
	.news-heading {
		margin-top: 0;
		margin-bottom: 15px;
	}

	.news-items {
		font-size: 16px;
		line-height: 1.5;
		text-align: justify;
	}

	.news-item {
		margin-bottom: 12px;
		line-height: 1.4;
	}

	.news-date {
		color: #990066;
		font-weight: bold;
		margin-right: 8px;
		display: inline;
	}

	.news-title-link {
		color: #006699;
		text-decoration: none;
		display: inline;
	}

	.news-title-link:hover {
		text-decoration: underline;
	}

	.news-archive-link {
		display: inline-block;
		margin-top: 15px;
		color: #006699;
		text-decoration: none;
	}

	.news-archive-link:hover {
		text-decoration: underline;
	}

	/* ========== ФУТЕР ========== */
	.footer {
		background: #59003c;
		color: #fff;
		font-size: 14px;
		line-height: 1.5;
		padding: 25px 0;
		margin-top: 30px;
	}

	.footer a {
		color: #fff;
		text-decoration: underline;
		transition: color 0.2s ease;
	}

	.footer a:hover {
		color: #669900;
		text-decoration: underline;
	}

	.footer__contacts {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		margin-bottom: 15px;
	}

	.footer-link {
		white-space: nowrap;
	}

	.social-icon {
		font-weight: bold;
	}

	.footer__address {
		margin-bottom: 15px;
	}

	.footer__copyright {
		margin-bottom: 10px;
		font-size: 13px;
	}

	.footer__legal {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
	}

	/* ========== АДАПТИВ ========== */
	@media (max-width: 768px) {
		.menu-icon {
			display: block;
		}
		.nav-list {
			display: none;
			flex-direction: column;
			width: 100%;
		}
		.nav-list.show {
			display: flex;
		}
		.nav-list li {
			text-align: left;
		}
		.header__main {
			flex-direction: column;
			text-align: center;
		}
		.header__contacts {
			flex-direction: row;
			flex-wrap: wrap;
			justify-content: space-between;
		}
		.header__phones {
			flex: 0 0 auto;
		}
		.header__social {
			flex: 1;
			text-align: right;
		}
		.header__social a {
			margin-left: 10px;
			margin-top: 0;
		}
		.footer__contacts,
		.footer__legal {
			flex-direction: column;
			align-items: center;
			text-align: center;
			gap: 8px;
		}
		.footer-link,
		.social-icon {
			white-space: normal;
		}
		.footer__address,
		.footer__copyright {
			text-align: center;
		}
	}

	/* Дополнительно: убираем отступы у списков */
	ul {
		padding-left: 10px;
	}
	/* Блок эксперта – светло-серый фон */
	.expert-block {
		background: #f5f5f5;
		padding: 25px;
		margin: 30px 0;
		border-radius: 0;
	}
	.expert-block h3 {
		margin-top: 0;
		margin-bottom: 20px;
		font-size: 1.3em;
		color: #006699;
	}
	.expert-inner {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		align-items: center;
	}
	.expert-photo {
		flex-shrink: 0;
		text-align: center;
	}
	.expert-photo img {
		display: block;
		width: 180px;
		height: 180px;
		border-radius: 50%;
		object-fit: cover;
		border: 5px solid #669900;
	}
	.expert-info {
		flex: 1;
	}
	.expert-info h4 {
		margin: 0 0 8px;
		color: #006699;
	}
	.expert-title {
		margin: 0 0 12px;
		color: #669900;
		font-weight: bold;
	}
	.expert-info p:last-of-type {
		margin-bottom: 15px;
	}
	.expert-info a {
		color: #006699;
		text-decoration: underline;
	}
	
/* Пурпурный блок (цвет #990066) */
	.purple-block {
    background: #f5f5f5;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #990066;
	border-right: 5px solid #990066;
	}
/* Синий блок (цвет #006699) */
	.blue-block {
    background: #f5f5f5;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #006699;
    border-right: 5px solid #006699;
	}
/* зеленый блок (вет #006699) */
	.green-block {
    background: #f5f5f5;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #669900;
    border-right: 5px solid #669900;
	}


/* Сетка для видов ТМ */
	.tm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на десктопе */
    gap: 25px;
    margin: 20px 0;
	}
	.tm-card {
		background: #fff;
		border: 1px solid #eee;
		padding: 15px;
		text-align: center;
		transition: box-shadow 0.2s;
	}
	.tm-card:hover {
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	}
	.tm-icon {
		width: 40px;
		height: 40px;
		background: #990066; /* пурпурный фон для иконки, можно разный цвет для каждого */
		color: #fff;
		font-size: 20px;
		font-weight: bold;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 8px; /* или квадрат, без скругления – уберите border-radius */
		margin-bottom: 10px;
	}
	.tm-card h3 {
		font-size: 16px;
		margin: 10px 0;
		color: #006699;
	}
	.tm-card p {
		font-size: 14px;
		color: #333;
	}
	.tm-card img {
		max-width: 100%;
		height: auto;
		border: 1px solid #ddd;
		margin-top: 10px;
	}
	@media (max-width: 768px) {
		.tm-grid {
			grid-template-columns: 1fr; /* на мобильных – одна колонка */
    }
}

	@media (max-width: 768px) {
		.expert-inner {
			flex-direction: column;
			text-align: center;
		}
		.expert-info {
			text-align: center;
		}
	}
	/* Блок отзывов */
	.services-links {
		margin: 30px 0;
	}
	.services-links h3 {
		text-align: center;
		color: #006699;
	}
	.services-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		justify-content: center;
	}
	.service-card {
		flex: 1;
		min-width: 200px;
		background: #fff;
		padding: 20px;
		border: 1px solid #eee;
		text-align: center;
	}
	.service-icon {
		font-size: 36px;
		color: #669900;
	}
	.service-card h4 {
		margin: 10px 0;
	}
	.service-card p {
		margin-bottom: 10px;
	}
	.service-card a {
		color: #006699;
		text-decoration: underline;
	}
	.reviews-block {
		background: #f9f9f9;
		padding: 25px;
		margin: 30px 0;
		border-left: 5px solid #669900;
		border-right: 5px solid #669900;   /* добавляем правую полосу */

	}
	.reviews-block h3 {
		margin-top: 0;
		color: #006699;
	}
	.reviews-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}
	.review-item {
		flex: 1;
	}
	.review-text {
		font-style: italic;
		color: #333;
	}
	.review-author {
		margin-top: 10px;
		font-weight: bold;
		color: #669900;
	}
	.reviews-more {
		text-align: center;
		margin-top: 20px;
	}
	.reviews-more a {
		color: #006699;
		text-decoration: underline;
	}
	
	/* Общие стили для карточек услуг */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}
.service-card {
    flex: 1;
    min-width: 200px;
    color: #fff;
    padding: 20px;
 /* border-radius: 8px; */
    text-align: justify;
}
.service-card h4 {
    color: #fff;
    margin-top: 0;
    font-size: 1.2em;
}
.service-card p {
    color: #fff;
    margin-bottom: 15px;
}
.service-card a {
    color: #fff;
    text-decoration: underline;
}
.service-card a:hover {
    text-decoration: none;
}
/* Индивидуальные цвета фона */
.service-card-green {
    background: #669900;   /* кристи */
}
.service-card-purple {
    background: #990066;   /* пурпурный */
}
.service-card-blue {
    background: #006699;   /* синий */
}
/* Адаптив */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
}