
* {
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
}
a {
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}
body {
	max-width: 1100px;
   margin: 0 auto;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	background-color: #0E6345;
	color: #ffffff;
	padding-top: 120px; /* Увеличено для навигации */
}
.conteiner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #083415;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	z-index: 1000;
	text-align: center;
}
.header_conteiner {
  display: flex;
  align-items: center;     /* центрируем по вертикали */
  justify-content: space-between;
  padding: 8px 15px;       /* уменьшенные отступы */
  gap: 10px;               /* расстояние между элементами */
  height: 70px;            /* фиксированная высота */
}
.header_logo img {
  max-height: 40px;  /* меньше логотип */
  width: auto;
}
@media (max-width: 768px) {
  .header_logo img {
    max-height: 30px;
  }
}
}
.header_button {
	display: flex;
	gap: 10px;
}

/* Навигационное меню */
.navigation {
  position: fixed;
  top: 80px; /* отступ вниз под высоту header */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 999;
}
.nav_conteiner {
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.nav-link {
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
}
.nav-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #FFCE04;
}
.nav-link.active {
	background-color: #000000;
	border-color: #FFCE04;
}

@media (max-width: 768px) {
	body {
		padding-top: 10px; /* Больше места для мобильной навигации */
	}
	.header_button {
		gap: 8px;
	}
	   
	.nav-link {
		font-size: 12px;
		padding: 6px 10px;
	}
}

.btn {
	border: 1px solid #FFCE04;
	display: inline-block;
	padding: 10px 20px;
	background-color: #FFCE04;
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	transition: box-shadow 0.3s ease-in-out;
}
@media (max-width: 768px) {
	.btn {
		 width: 100%;
		 text-align: center;
		 padding: 10px;
		 font-size: 14px;
	}
}
@keyframes glow {
	0% { box-shadow: 0 0 5px #FFCE04; }
	50% { box-shadow: 0 0 20px #FFCE04; }
	100% { box-shadow: 0 0 5px #FFCE04; }
}
.glowing {
	animation: glow 1.5s infinite alternate;
}

.button_1 {
	background-color: #000000;
}
.button_2 {
	background-color: transparent;
}
.button_2:hover {
	background-color: #FFCE04;
}

h1 {
	font-size: 40px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 1.4;
}
@media (max-width: 768px) {
	h1 {
		font-size: 30px;
	}
}
h2 {
	font-size: 30px;
	font-weight: bold;
}
@media (max-width: 768px) {
	h2 {
		font-size: 26px;
		margin-top: 10px;
	}
}
.main_conteiner {
	position: relative;
	margin-top: 40px;
}
.main_text {
    	font-size: 18px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
main img {
	display: flex;
	align-items: center;
	justify-content: center;
    width: 100%;
}
.main p {
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.4;
}

.photo {
	margin: 0 auto;
	width: 70%;
	height: 80%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.photo {
		width: 100%;
		margin-bottom: 20px;
	}
}
.main h1 {
	margin-bottom: 50px;
}
@media (max-width: 768px) {
	.main h1 {
		margin-bottom: 20px;
	}
}
.popup {
	width: 470px;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #0E6345;
	color: #ffffff;
	border-radius: 20px;
	padding: 20px 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
@media (max-width: 768px) {
	.popup {
		width: 95%;
		padding: 6px;
		gap: 10px;
		border-radius: 10px;
	}
}
.popup_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
@media (max-width: 768px) {
	.popup_block {
		display: flex;
		justify-content: space-around;	
	}
}

.popup.show {
	opacity: 1;
	visibility: visible;
}

.popup-close {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.476);
	font-size: 20px;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 6px;
}
@media (max-width: 768px) {
	.popup-close {
		font-size: 16px;
		right: 6px;
		top: 3px;
	}
}
.block_txt {
	width: 40%;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.block_txt span {
	font-size: 35px;
	color: #ffffff;
	font-weight: 700;
}
@media (max-width: 768px) {
	.block_txt span {
		font-size: 24px;
	}
}
.block_txt p {
	color: #ffffff;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_txt p {
		font-size: 14px;
	}
}
.block_btn {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
}
@media (max-width: 768px) {
	.block_btn {
		font-size: 14px;
	}
}

/* Дополнительные стили для сгенерированного контента */
h3 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}

th, td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  text-align: left;
}

th {
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}
.seo-links {
  background: #083415;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.seo-links h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.seo-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-links ul li {
  margin-bottom: 8px;
}

.seo-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.seo-links ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review {
  display: flex;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review .avatar {
  width: 60px;
  height: 60px;
  border-radius: 25px; /* скругление краёв */
  margin-right: 15px;
  object-fit: cover;
}

.review-text h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #222;
}

.review-text p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.big-button {
  display: inline-block;
  padding: 18px 50px; /* увеличенный размер */
  font-size: 22px; /* крупный текст */
  font-weight: bold;
  color: #fff;
  background: #000000; /* синий, как у кнопки Регистрация */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 206, 4, 0.8); /* свечение */
  transition: all 0.3s ease;
      margin-bottom: 15px; /* ✅ отступ между кнопками */

}

.big-button:hover {
  background: #FFCE04; /* темнее при наведении */
  box-shadow: 0 0 20px rgba(30, 115, 190, 1);
}


.navigation {
  position: relative;
}

}
.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2e;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  min-width: 150px;
  z-index: 900; /* ниже гамбургера */
}
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #2a2a3d;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* гамбургер */
.hamburger {
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  z-index: 1001; /* всегда выше выпадашки */
  position: relative;
}

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a1a2e;
  position: absolute;
  right: 20px;
  top: 60px;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px;
  z-index: 1000; /* выше всего */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.mobile-menu a {
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.mobile-menu a:hover {
  background: #2a2a3d;
}

.promo-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
  max-width: 400px;
}

.promo-block input {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  border: 2px solid #ffcc00;
  border-radius: 8px;
  background: #141a2a;
  color: #fff;
  flex: 1;
}

.promo-block button {
  font-size: 18px;
  font-weight: bold;
  background: #ffcc00;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.promo-block button:hover {
  background: #155a96;
  box-shadow: 0 0 10px rgba(255,206,4,0.9);
}

.apk-section {
  background: #006b3f;
  padding: 60px 20px;
  color: #fff;
font-family: 'Montserrat', sans-serif;

}

/* поставить ниже глобального *{...} */
.apk-section,
.apk-section * {
  font-family: 'Montserrat', sans-serif;
}

.apk-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* левая и правая колонка */
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 40px;
}

.apk-info {
  text-align: left;
}

.apk-info h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
}

.apk-info h1 span {
  color: #ffcc00;
}

.apk-info p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.apk-button {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #000;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  padding: 15px 25px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  max-width: 360px; /* фиксированная ширина */
}

.apk-button:hover {
  background: #111;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.apk-button img {
  width: 50px;
  height: auto;
}



.apk-button-text {
  display: flex;
  flex-direction: column;
}

.apk-button-text strong {
  font-size: 20px;
}

.apk-button-text span {
  font-size: 14px;
  opacity: 0.9;
}

.apk-version {
  margin: 20px 0 30px;
  font-size: 14px;
  color: #ddd;
}
.apk-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.feature {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
}

.feature img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.feature p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* --- адаптив для мобильных --- */
@media (max-width: 768px) {
  .apk-features {
    flex-direction: column;
    gap: 20px;
  }

  .feature {
    flex: 1 1 100%;
    flex-direction: column;   /* иконка сверху, текст снизу */
    align-items: center;
    text-align: center;
  }

  .feature p {
    text-align: center;
    font-size: 15px;
  }
}

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

.apk-image img {
  max-width: 80%;
  height: auto;
        align-items: center;

}

/* --- адаптив для мобильных --- */
@media (max-width: 768px) {
  .apk-container {
    grid-template-columns: 1fr;   /* одна колонка */
    text-align: center;           /* центрируем контент */
  }

  .apk-info h1 {
    font-size: 26px;              /* уменьшаем заголовок */  }

  .apk-info p {
    font-size: 15px;              /* уменьшаем текст */
    line-height: 1.5;
  }

   .apk-button {
    max-width: 100%;
    justify-content: center;
  }

  .apk-button img {
    width: 35px;                  /* уменьшенная иконка */
  }

  .apk-button-text strong {
    font-size: 18px;
  }

  .apk-button-text span {
    font-size: 13px;
  }

  .apk-version {
    font-size: 13px;
  }

    .apk-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;     /* не переносим */
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }

 .feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature img {
    width: 40px;
    margin-bottom: 5px;
  }

  .feature p {
    font-size: 12px;
    line-height: 1.3;
  }

  .apk-image {
    order: -1;                    /* картинка уходит наверх */
    margin-bottom: 20px;
  }

  .apk-image img {
    max-width: 40%;               /* уменьшаем картинку */
  }
}

.apk-info h1 {
  font-family: 'MyFont', sans-serif;
}

.apk-button {
  font-family: 'MyFont', sans-serif;
}

@media (max-width: 768px) {
  .apk-image {
    display: flex;
    justify-content: center;
  }

  .apk-image img {
    max-width: 80%;
  }
}

  

  .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

ol li {
  margin-bottom: 30px;
  line-height: 1.6;
}

ol li p {
  margin-bottom: 15px; /* отступ текста от картинки */
  font-size: 18px;
}
.apk-steps {
  text-align: center;
}
.apk-step {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .apk-step {
    max-width: 90%; /* на телефонах почти вся ширина */
  }
}

@media (max-width: 1024px) {
  .apk-image .phones-img {
    max-width: 320px; /* планшеты */
  }
}

@media (max-width: 768px) {
  .apk-image .phones-img {
    max-width: 260px; /* телефоны */
  }
}
}

.apk-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.apk-image .phones-img {
  max-width: 420px;   /* 🔥 ограничение ширины на десктопе */
  width: 100%;
  height: auto;
  display: block;
}

.phones-img {
  width: clamp(280px, 48vw, 520px); /* адаптивно: min–fluid–max */
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .phones-img { width: clamp(240px, 80vw, 360px); }
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.rating-score {
  font-size: 36px;
  font-weight: bold;
  color: #ff9900;
}

.rating-score span {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

.rating-details p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.rating-stars {
  font-size: 20px;
  color: #ffcc00;
}

.avatar {
  width: 70px;           /* размер аватарки */
  height: 70px;
  border-radius: 50%;    /* делаем круглую форму */
  object-fit: cover;     /* картинка обрезается, но без искажений */
  margin-right: 15px;    /* отступ справа от текста */
  border: 2px solid #ddd;/* лёгкая рамка */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* тень для объёма */
}

@media (max-width: 768px) {
  .avatar {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }
}

.review-form {
  max-width: 600px;
  margin: 30px 0;           /* убрал auto по центру */
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;         /* текст и элементы формы влево */
}

.review-form .form-group {
  margin-bottom: 20px;
}

.review-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  transition: border 0.3s;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: #ffcc00;
  outline: none;
}

.btn-submit {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  background: #ffcc00;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  background: #e6b800;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

.thank-you-message {
  margin: 20px 0;
  padding: 15px 20px;
  background: #e6ffe6;
  border: 1px solid #66cc66;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #006600;
}