
* {
    margin: 0;
    box-sizing: border-box;
     font-family: Arial, sans-serif;
	} 
h2 {font-size: 32px;}
h3 {font-size: 28px;}
h4 {font-size: 25px;}
h6 {font-size: 22px;}

h2, h3, h4, h6 {
  font-family: 'Courier New', monospace;
  margin-top: 32px; /* отступ верх */
  margin-bottom: 32px;/* отступ низ */
  text-align: center;
}
body {
  line-height: 1.6;
  color: #2d452d;
  font-family: 'Courier New', monospace;
  max-width: 100%; 
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0; /* чтобы фон мог быть под контентом */
}

body::before {
  content: "";
  position: fixed;   /* фиксируем на экране */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("fon.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.5;      /* прозрачность, можно убрать */
  z-index: -1;       /* фон уходит за текст */
}
.content {
  background: url("fon.jpg") no-repeat center top; /* или background-color */
  background-size: cover; /* растянуть */
  padding: 30px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    background: #FFF;
}
.container2 img	{
    width: 100px;
  height: 100px;
  text-align: center;   
}
.images {
text-align: center;  
}	
.images img	{
width: 75%;
}
section{
 font-size: 1.3em; /* Увеличиваем шрифт на 20% */
background: #FFF;
max-width: 99%;
}
p, li{font-size: 24px;}

.faq-item {
    margin-top: 20px;
    background: #fcfaed;
    padding: 20px;
    border-radius: 5px;
  text-align: left;
    max-width: 600px;
    margin: 10px auto;
    padding: 10px;
    background: #f0f0f0;
    font-size: 0.8em;	
}
.container1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
    text-align: center;
}
.container1 .icon-block img {
  width: 200px;      /* одинаковая ширина */
  height: 200px;     /* одинаковая высота */
  object-fit: cover; /* картинка заполняет квадрат полностью */
  display: block;
  margin: 0 auto 10px;
}

.icon-block {
    flex: 1 1 250px;
    max-width: 250px;
    padding: 10px;
}

.icon-block img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}
.icon-block p {
    font-size: 24px;
    color: #2d452d;
}
.text-img {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap; /* важный момент для мобильных */
}
.text-img img {
  width: 150px;
  flex-shrink: 0; /* не ужимается слишком сильно */
}
.text-img p {
  flex: 1; /* текст занимает оставшееся место */
}	
 .pdf-button {
      display: inline-block;
      padding: 12px 24px;
      font-size: 18px;
      font-weight: 500;
      color: #333; /* тёмно-серый текст */
      border: 2px solid #333; /* тёмно-серый ободок */
      background: transparent;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }
 .pdf-button:hover {
      background: #000;   /* фон черный */
      color: #fff;        /* белый текст */
    }
 .pdf-button:active {
      background: #444;   /* фон тёмно-серый при нажатии */
      color: #fff;
    }
	
.messenger-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.messenger-buttons .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #2e4a32; /* цвет текста как на сайте */
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.messenger-buttons .btn svg {
  padding: 6px;
  border-radius: 50%;
  background: #fff;       /* фон круга */
  border: 2px solid #ccc; /* рамка по кругу */
  box-sizing: content-box;
  width: 40px;
  height: 40px;
}
.messenger-buttons .btn img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 12px;
  background: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 8px;
  transition: background 0.3s ease;
 
}
.messenger-buttons .btn:hover {
  transform: translateY(-4px);
}
.messenger-buttons .btn:hover img {
  background: #e8f5e9; /* лёгкий подсвет под ховер */
}
/* адаптивность */
@media (max-width: 600px) {
  .messenger-buttons {
    gap: 14px;
  }
  .messenger-buttons .btn img {
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .messenger-buttons .btn {
    font-size: 14px;
	-webkit-tap-highlight-color: transparent;
  }
}
footer {
    text-align: center;
    padding: 1px;
    background: #111;
    color: #fff;
    font-size: 14px;
max-width: 1350px;
      margin: 0 auto;
}
.site-footer {
  background-color: #000; /* чорний фон */
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.site-footer p {
  color: #fff;
  margin: 8px 0;
}
.social-icons {
  margin: 15px 0; /* расстояние вокруг блока с иконками */
}
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;   /* размер круга */
  height: 60px;  /* размер круга */
  margin: 0 10px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  font-size: 28px; /* размер иконки внутри */
  text-decoration: none; /* убирает подчёркивание */
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background-color: #444;
  transform: scale(1.1);
}


    .form-section {
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 20px rgb(0 0 0 / 0.05);
  }
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol, ul {
    padding-left: 2rem;
	text-align: left;
}
*, ::after, ::before {
    box-sizing: border-box;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    text-align: left;
 }

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1em;
}
.faq-question {
  display: block;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
 margin-right: 5px;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
}
input[type="checkbox"] {
  display: none;
 max-height: 400px; 
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 1em;
  color: #333;
  padding-left: 10px;
}
input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 400px; /* тут меняешь длину, если нужно больше */
}
input[type="checkbox"]:checked + label::after {
  content: '−';
}
.doc-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.doc-navigation a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  border-radius: 50px;
  transition: all 0.3s ease;
  padding: 5px 10px ;
}
.doc-navigation .circle {
  border: 2px solid #333;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.doc-navigation .circle.active {
  background: #333;
  color: #fff;
}
.doc-navigation .circle:hover,
.doc-navigation a:hover {
  background: #333;
  color: #fff;
}