/* Основные стили для сайта АКТИВиСТ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Стили для контейнера */
.container {
  max-width: 972px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Стили для заголовка */
header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header_links {
  text-align: right;
  padding: 20px;
}

.header_links a {
  color: #333;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.header_links a:hover {
  color: #0066cc;
}

/* Стили для основного контента */
main {
  background-color: #fff;
  padding: 40px 0;
}

.div_content {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.div_content p {
  margin-bottom: 15px;
}

/* Стили для боковой панели */
#aside_right {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#aside_right h2 {
  color: #333;
  margin-bottom: 20px;
  padding-top: 20px;
}

#aside_right .mmenu {
  margin-bottom: 20px;
}

#aside_right .mmenu a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

#aside_right .mmenu a:hover {
  text-decoration: underline;
}

/* Стили для хлебных крошек */
._breadCrumbs {
  margin: 20px 0;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
}

.breadcrumbs li {
  color: #666;
}

.breadcrumbs li:not(:last-child)::after {
  content: '>';
  margin: 0 10px;
  color: #999;
}

/* Стили для футера */
.bottom {
  color: #333;
  line-height: 1.8;
}

.bottom b {
  color: #000;
}

._licence {
  margin-top: 15px;
}

._licence a {
  color: #0066cc;
  text-decoration: none;
}

._licence a:hover {
  text-decoration: underline;
}

/* Стили для информационных блоков */
._info_zakon {
  margin: 40px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .header_links {
    text-align: center;
    margin-top: 20px;
  }
  
  .header_links a {
    display: block;
    margin: 5px 0;
  }
  
  #aside_right {
    width: 100%;
    margin-top: 20px;
  }
  
  .div_content {
    padding: 15px;
  }
}

/* Стили для загрузки */
._loading {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

._loading.loaded {
  opacity: 1;
}

/* Стили для SEO */
.ulet_seo, strong .ulet_seo, H3 .ulet_seo {
  font-weight: inherit !important;
  font-size: inherit !important;
}