/* ========== СЕКЦИЯ СТАТЬИ (service.css) ========== */
.nemanex-article-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.nemanex-article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.nemanex-article-container h1 {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 44px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 15px;
}

.nemanex-article-date {
  color: #888;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(174, 211, 4, 0.3);
}

.nemanex-article-container p {
  color: #444;
  font-family: RobotoRegular, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.nemanex-article-container h2 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 28px;
  margin: 40px 0 20px;
}

.nemanex-article-container h3 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 22px;
  margin: 30px 0 15px;
}

.nemanex-article-container ul,
.nemanex-article-container ol {
  margin: 20px 0;
  padding-left: 40px;
}

.nemanex-article-container li {
  margin-bottom: 10px;
  color: #444;
  font-family: RobotoRegular, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.nemanex-article-container a {
  color: #aed304;
  text-decoration: none;
}

.nemanex-article-container a:hover {
  text-decoration: underline;
}

.nemanex-article-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.nemanex-article-container blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #aed304;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
  font-family: RobotoRegular, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-article-container h1 {
    font-size: 38px;
  }
  
  .nemanex-article-container h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-article-section {
    padding: 40px 0;
  }
  
  .nemanex-article-container h1 {
    font-size: 32px;
  }
  
  .nemanex-article-container p,
  .nemanex-article-container li,
  .nemanex-article-container blockquote {
    font-size: 16px;
  }
  
  .nemanex-article-container h2 {
    font-size: 24px;
    margin: 30px 0 15px;
  }
  
  .nemanex-article-container h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-article-container h1 {
    font-size: 28px;
  }
  
  .nemanex-article-date {
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  
  .nemanex-article-container h2 {
    font-size: 22px;
  }
  
  .nemanex-article-container h3 {
    font-size: 19px;
  }
  
  .nemanex-article-container blockquote {
    padding: 15px 20px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-article-container h1 {
    font-size: 24px;
  }
  
  .nemanex-article-container h2 {
    font-size: 20px;
  }
}



/* ========== АРХИВ СТАТЕЙ (service.css) ========== */
.nemanex-blog-archive {
  padding: 60px 0;
  background-color: #ffffff;
}

.nemanex-archive-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nemanex-archive-heading {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 44px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.nemanex-archive-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #aed304;
  border-radius: 2px;
}

.nemanex-archive-empty {
  color: #888;
  font-family: RobotoRegular, sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 40px 0;
}

.nemanex-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.nemanex-article-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(174, 211, 4, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nemanex-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(174, 211, 4, 0.15);
  border-color: rgba(174, 211, 4, 0.3);
}

.nemanex-card-title {
  margin: 0 0 10px;
  font-family: RobotoBold, sans-serif;
  font-size: 22px;
  line-height: 1.3;
}

.nemanex-card-link {
  color: #323437;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nemanex-card-link:hover {
  color: #aed304;
}

.nemanex-card-date {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(174, 211, 4, 0.2);
}

.nemanex-card-excerpt {
  color: #555;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.nemanex-card-button {
  display: inline-block;
  color: #aed304;
  font-family: RobotoBold, sans-serif;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #aed304;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

.nemanex-card-button:hover {
  background: #aed304;
  color: #ffffff;
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-archive-heading {
    font-size: 38px;
  }
  
  .nemanex-articles-grid {
    gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-blog-archive {
    padding: 40px 0;
  }
  
  .nemanex-archive-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .nemanex-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nemanex-article-card {
    padding: 20px;
  }
  
  .nemanex-card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-archive-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .nemanex-card-excerpt {
    font-size: 15px;
  }
  
  .nemanex-card-button {
    font-size: 15px;
    padding: 8px 18px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-archive-heading {
    font-size: 24px;
  }
  
  .nemanex-card-title {
    font-size: 18px;
  }
}



/* ========== СТРАНИЦА КОНТАКТОВ (service.css) ========== */
.nemanex-contact-page {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 60vh;
}

.nemanex-contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.nemanex-contact-heading {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.nemanex-contact-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #aed304;
  border-radius: 2px;
}

.nemanex-contact-intro {
  color: #666;
  font-family: RobotoLight, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.nemanex-contact-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(174, 211, 4, 0.1);
}

.nemanex-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.nemanex-contact-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(174, 211, 4, 0.1);
}

.nemanex-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(174, 211, 4, 0.15);
  border-color: rgba(174, 211, 4, 0.3);
  background: #ffffff;
}

.nemanex-contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.nemanex-contact-item-title {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
}

.nemanex-contact-item-text {
  color: #555;
  font-family: RobotoRegular, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.nemanex-contact-link {
  color: #aed304;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nemanex-contact-link:hover {
  color: #8faf00;
  text-decoration: underline;
}

.nemanex-contact-hours {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 15px;
  margin-top: 10px;
}

.nemanex-contact-note {
  margin-top: 40px;
  padding: 25px 30px;
  background: rgba(174, 211, 4, 0.05);
  border-radius: 12px;
  border-left: 4px solid #aed304;
}

.nemanex-contact-note-text {
  color: #555;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-contact-heading {
    font-size: 42px;
  }
  
  .nemanex-contact-intro {
    font-size: 18px;
  }
  
  .nemanex-contact-wrapper {
    padding: 40px;
  }
  
  .nemanex-contact-grid {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-contact-page {
    padding: 50px 0;
  }
  
  .nemanex-contact-heading {
    font-size: 36px;
  }
  
  .nemanex-contact-intro {
    font-size: 17px;
    margin-bottom: 40px;
  }
  
  .nemanex-contact-wrapper {
    padding: 30px;
  }
  
  .nemanex-contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nemanex-contact-item {
    padding: 25px 20px;
  }
  
  .nemanex-contact-item-title {
    font-size: 20px;
  }
  
  .nemanex-contact-item-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-contact-heading {
    font-size: 32px;
  }
  
  .nemanex-contact-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .nemanex-contact-wrapper {
    padding: 20px;
  }
  
  .nemanex-contact-icon {
    font-size: 40px;
  }
  
  .nemanex-contact-item-title {
    font-size: 19px;
  }
  
  .nemanex-contact-note {
    padding: 18px 20px;
  }
  
  .nemanex-contact-note-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-contact-heading {
    font-size: 28px;
  }
  
  .nemanex-contact-item {
    padding: 20px 15px;
  }
}

/* ========== ЮРИДИЧЕСКИЙ ДОКУМЕНТ (service.css) ========== */
.nemanex-legal-document {
  padding: 60px 0;
  background-color: #ffffff;
}

.nemanex-legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.nemanex-legal-title {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 44px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.nemanex-legal-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #aed304;
  border-radius: 2px;
}

.nemanex-legal-date {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.nemanex-legal-content {
  color: #444;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.nemanex-legal-content h2 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 28px;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(174, 211, 4, 0.3);
}

.nemanex-legal-content h3 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 22px;
  margin: 30px 0 15px;
}

.nemanex-legal-content p {
  margin-bottom: 20px;
}

.nemanex-legal-content ul,
.nemanex-legal-content ol {
  margin: 20px 0;
  padding-left: 40px;
}

.nemanex-legal-content li {
  margin-bottom: 10px;
}

.nemanex-legal-content a {
  color: #aed304;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nemanex-legal-content a:hover {
  color: #8faf00;
  text-decoration: underline;
}

.nemanex-legal-content strong {
  font-family: RobotoBold, sans-serif;
  color: #323437;
}

.nemanex-legal-content blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #aed304;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.nemanex-legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.nemanex-legal-content th {
  background: rgba(174, 211, 4, 0.1);
  font-family: RobotoBold, sans-serif;
  color: #323437;
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(174, 211, 4, 0.3);
}

.nemanex-legal-content td {
  padding: 10px 12px;
  border: 1px solid rgba(174, 211, 4, 0.2);
}

.nemanex-legal-content hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid rgba(174, 211, 4, 0.2);
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-legal-title {
    font-size: 38px;
  }
  
  .nemanex-legal-content h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-legal-document {
    padding: 50px 0;
  }
  
  .nemanex-legal-title {
    font-size: 32px;
  }
  
  .nemanex-legal-date {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .nemanex-legal-content {
    font-size: 15px;
  }
  
  .nemanex-legal-content h2 {
    font-size: 24px;
    margin: 35px 0 15px;
  }
  
  .nemanex-legal-content h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-legal-title {
    font-size: 28px;
    padding-bottom: 15px;
  }
  
  .nemanex-legal-title::after {
    width: 80px;
  }
  
  .nemanex-legal-date {
    font-size: 14px;
  }
  
  .nemanex-legal-content {
    font-size: 14px;
    line-height: 1.7;
  }
  
  .nemanex-legal-content h2 {
    font-size: 22px;
  }
  
  .nemanex-legal-content h3 {
    font-size: 19px;
  }
  
  .nemanex-legal-content ul,
  .nemanex-legal-content ol {
    padding-left: 25px;
  }
  
  .nemanex-legal-content blockquote {
    padding: 15px 20px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-legal-title {
    font-size: 24px;
  }
  
  .nemanex-legal-content h2 {
    font-size: 20px;
  }
  
  .nemanex-legal-content h3 {
    font-size: 18px;
  }
}

/* ========== ФУТЕР (service.css) ========== */
.nemanex-footer-container {
  background: #323437;
  padding: 40px 0;
  border-top: 3px solid #aed304;
}

.nemanex-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.nemanex-footer-nav {
  margin-bottom: 25px;
}

.nemanex-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.nemanex-footer-item {
  margin: 0;
}

.nemanex-footer-link {
  color: #ffffff;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.nemanex-footer-link:hover {
  color: #aed304;
  opacity: 1;
}

.nemanex-footer-copyright {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Медиа-запросы */
@media screen and (max-width: 767px) {
  .nemanex-footer-container {
    padding: 30px 0;
  }
  
  .nemanex-footer-menu {
    gap: 20px;
  }
  
  .nemanex-footer-link {
    font-size: 15px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-footer-menu {
    flex-direction: column;
    gap: 15px;
  }
  
  .nemanex-footer-item {
    width: 100%;
  }
  
  .nemanex-footer-link {
    display: block;
    padding: 5px 0;
  }
  
  .nemanex-footer-copyright {
    font-size: 13px;
  }
}


/* ========== НАВИГАЦИЯ (service.css) ========== */
.nemanex-header-nav {
  background: #323437;
  border-bottom: 2px solid #aed304;
  position: relative;
}

.nemanex-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Центрируем содержимое на десктопе */
  min-height: 60px;
}

/* Кнопка мобильного меню */
.nemanex-mobile-toggle {
  display: none;
  background: #aed304;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 15px;
  z-index: 1001;
  position: absolute;
  right: 20px; /* Фиксируем справа */
  top: 50%;
  transform: translateY(-50%);
}

.nemanex-mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #323437;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nemanex-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nemanex-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nemanex-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nemanex-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.nemanex-nav-item {
  margin: 0;
}

.nemanex-nav-link {
  display: block;
  color: #ffffff;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nemanex-nav-link:hover {
  color: #aed304;
}

.nemanex-nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: #aed304;
  transition: width 0.3s ease;
}

.nemanex-nav-link:hover::after {
  width: 100%;
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-nav-menu {
    gap: 30px;
  }
  
  .nemanex-nav-link {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-nav-container {
    justify-content: flex-start; /* Сдвигаем контент влево на мобильных */
  }
  
  .nemanex-mobile-toggle {
    display: block;
  }
  
  .nemanex-nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #323437;
    padding: 10px 0;
    margin: 0;
    z-index: 999;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #aed304;
  }
  
  .nemanex-nav-menu.active {
    display: flex;
  }
  
  .nemanex-nav-item {
    width: 100%;
    text-align: center;
  }
  
  .nemanex-nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(174, 211, 4, 0.2);
    width: 100%;
  }
  
  .nemanex-nav-link::after {
    display: none;
  }
  
  .nemanex-nav-item:last-child .nemanex-nav-link {
    border-bottom: none;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-nav-link {
    font-size: 14px;
    padding: 12px 0;
  }
}


/* ========== ЮРИДИЧЕСКАЯ СТРАНИЦА (service.css) ========== */
.nemanex-legal-page {
  padding: 70px 0;
  background: #ffffff;
}

.nemanex-legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.nemanex-legal-heading {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 44px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.nemanex-legal-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #aed304;
  border-radius: 2px;
}

.nemanex-legal-updated {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  font-style: italic;
}

.nemanex-legal-body {
  color: #444;
  font-family: RobotoRegular, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.nemanex-legal-body h2 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 28px;
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(174, 211, 4, 0.2);
}

.nemanex-legal-body h3 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 22px;
  margin: 35px 0 15px;
}

.nemanex-legal-body h4 {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 18px;
  margin: 25px 0 10px;
}

.nemanex-legal-body p {
  margin-bottom: 20px;
}

.nemanex-legal-body ul,
.nemanex-legal-body ol {
  margin: 20px 0;
  padding-left: 40px;
}

.nemanex-legal-body li {
  margin-bottom: 10px;
}

.nemanex-legal-body a {
  color: #aed304;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nemanex-legal-body a:hover {
  color: #8faf00;
  border-bottom-color: #aed304;
}

.nemanex-legal-body strong {
  font-family: RobotoBold, sans-serif;
  color: #323437;
}

.nemanex-legal-body blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: #f8f9fa;
  border-left: 4px solid #aed304;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.nemanex-legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}

.nemanex-legal-body th {
  background: rgba(174, 211, 4, 0.1);
  font-family: RobotoBold, sans-serif;
  color: #323437;
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(174, 211, 4, 0.3);
}

.nemanex-legal-body td {
  padding: 10px 12px;
  border: 1px solid rgba(174, 211, 4, 0.2);
}

.nemanex-legal-body hr {
  margin: 50px 0;
  border: none;
  border-top: 2px solid rgba(174, 211, 4, 0.2);
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-legal-heading {
    font-size: 38px;
  }
  
  .nemanex-legal-body h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-legal-page {
    padding: 50px 0;
  }
  
  .nemanex-legal-heading {
    font-size: 32px;
  }
  
  .nemanex-legal-updated {
    font-size: 15px;
    margin-bottom: 40px;
  }
  
  .nemanex-legal-body {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .nemanex-legal-body h2 {
    font-size: 24px;
    margin: 40px 0 15px;
  }
  
  .nemanex-legal-body h3 {
    font-size: 20px;
    margin: 30px 0 12px;
  }
  
  .nemanex-legal-body ul,
  .nemanex-legal-body ol {
    padding-left: 30px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-legal-heading {
    font-size: 28px;
    padding-bottom: 15px;
  }
  
  .nemanex-legal-heading::after {
    width: 80px;
  }
  
  .nemanex-legal-updated {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .nemanex-legal-body {
    font-size: 14px;
  }
  
  .nemanex-legal-body h2 {
    font-size: 22px;
  }
  
  .nemanex-legal-body h3 {
    font-size: 19px;
  }
  
  .nemanex-legal-body h4 {
    font-size: 17px;
  }
  
  .nemanex-legal-body ul,
  .nemanex-legal-body ol {
    padding-left: 25px;
  }
  
  .nemanex-legal-body blockquote {
    padding: 15px 18px;
  }
  
  .nemanex-legal-body table {
    font-size: 13px;
  }
  
  .nemanex-legal-body th,
  .nemanex-legal-body td {
    padding: 8px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-legal-heading {
    font-size: 24px;
  }
  
  .nemanex-legal-body h2 {
    font-size: 20px;
  }
  
  .nemanex-legal-body h3 {
    font-size: 18px;
  }
  
  .nemanex-legal-body table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
  }
}




/* ========== СТРАНИЦА ОТЗЫВОВ (service.css) ========== */
.nemanex-reviews-page {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.nemanex-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.nemanex-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.nemanex-reviews-title {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.nemanex-reviews-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #aed304;
  border-radius: 2px;
}

.nemanex-reviews-highlight {
  color: #aed304;
}

.nemanex-reviews-description {
  color: #666;
  font-family: RobotoLight, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Reviews Grid */
.nemanex-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Review Card */
.nemanex-review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(174, 211, 4, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nemanex-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(174, 211, 4, 0.15);
  border-color: rgba(174, 211, 4, 0.3);
}

.nemanex-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.nemanex-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #aed304;
  color: #ffffff;
  font-family: RobotoBold, sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nemanex-reviewer-info {
  flex: 1;
}

.nemanex-reviewer-name {
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 5px;
}

.nemanex-verified-badge {
  display: inline-block;
  background: rgba(174, 211, 4, 0.1);
  color: #aed304;
  font-family: RobotoRegular, sans-serif;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
}

.nemanex-review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.nemanex-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}

.nemanex-rating-label {
  color: #888;
  font-family: RobotoLight, sans-serif;
  font-size: 14px;
}

.nemanex-review-content {
  color: #555;
  font-family: RobotoRegular, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Review Form Section */
.nemanex-review-form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(174, 211, 4, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.nemanex-form-heading {
  color: #323437;
  font-family: PTSansBold, sans-serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.nemanex-form-description {
  color: #666;
  font-family: RobotoLight, sans-serif;
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.nemanex-review-form {
  max-width: 700px;
  margin: 0 auto;
}

.nemanex-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.nemanex-form-label {
  display: block;
  color: #323437;
  font-family: RobotoRegular, sans-serif;
  font-size: 15px;
  margin-bottom: 8px;
}

.nemanex-required-mark {
  color: #ff4444;
}

.nemanex-form-input,
.nemanex-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(174, 211, 4, 0.3);
  border-radius: 8px;
  font-family: RobotoRegular, sans-serif;
  font-size: 15px;
  color: #323437;
  transition: all 0.3s ease;
}

.nemanex-form-input:focus,
.nemanex-form-textarea:focus {
  outline: none;
  border-color: #aed304;
  box-shadow: 0 0 0 3px rgba(174, 211, 4, 0.1);
}

.nemanex-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Rating Stars Input */
.nemanex-rating-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.nemanex-rating-select input {
  display: none;
}

.nemanex-rating-select label {
  color: #ddd;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nemanex-rating-select label:hover,
.nemanex-rating-select label:hover ~ label,
.nemanex-rating-select input:checked ~ label {
  color: #ffc107;
}

/* Privacy Checkbox */
.nemanex-privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nemanex-privacy-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.nemanex-privacy-checkbox .nemanex-form-label {
  margin-bottom: 0;
  font-size: 14px;
}

.nemanex-link {
  color: #aed304;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nemanex-link:hover {
  color: #8faf00;
  text-decoration: underline;
}

/* Submit Button */
.nemanex-submit-button {
  background: #aed304;
  color: #323437;
  font-family: RobotoBold, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.nemanex-submit-button:hover {
  background: #8faf00;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(174, 211, 4, 0.3);
}

/* Медиа-запросы */
@media screen and (max-width: 999px) {
  .nemanex-reviews-title {
    font-size: 38px;
  }
  
  .nemanex-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .nemanex-review-form-section {
    padding: 40px;
  }
  
  .nemanex-form-heading {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .nemanex-reviews-page {
    padding: 40px 0;
  }
  
  .nemanex-reviews-title {
    font-size: 32px;
  }
  
  .nemanex-reviews-description {
    font-size: 16px;
  }
  
  .nemanex-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nemanex-review-card {
    padding: 20px;
  }
  
  .nemanex-review-form-section {
    padding: 30px 20px;
  }
  
  .nemanex-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .nemanex-form-heading {
    font-size: 24px;
  }
  
  .nemanex-submit-button {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media screen and (max-width: 479px) {
  .nemanex-reviews-title {
    font-size: 28px;
  }
  
  .nemanex-review-header {
    flex-direction: column;
    text-align: center;
  }
  
  .nemanex-reviewer-name {
    font-size: 16px;
  }
  
  .nemanex-verified-badge {
    display: block;
    margin: 5px 0 0;
    text-align: center;
  }
  
  .nemanex-review-rating {
    flex-direction: column;
    gap: 5px;
  }
  
  .nemanex-review-content {
    font-size: 14px;
  }
  
  .nemanex-form-heading {
    font-size: 22px;
  }
  
  .nemanex-form-description {
    font-size: 14px;
  }
  
  .nemanex-privacy-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .nemanex-rating-select label {
    font-size: 25px;
  }
}

@media screen and (max-width: 319px) {
  .nemanex-reviews-title {
    font-size: 24px;
  }
  
  .nemanex-review-avatar {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .nemanex-stars {
    font-size: 16px;
  }
  
  .nemanex-rating-label {
    font-size: 12px;
  }
  
  .nemanex-form-input,
  .nemanex-form-textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .nemanex-submit-button {
    font-size: 15px;
  }
}


/* ========== КНОПКА ВОЗВРАТА НА ГЛАВНУЮ ========== */
.nemanex-back-to-home {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.nemanex-home-button {
    display: inline-block;
    background: #aed304;
    color: #323437;
    font-family: RobotoBold, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(174, 211, 4, 0.3);
}

.nemanex-home-button:hover {
    background: #8faf00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(174, 211, 4, 0.4);
}

@media screen and (max-width: 767px) {
    .nemanex-home-button {
        font-size: 18px;
        padding: 15px 40px;
    }
}

@media screen and (max-width: 479px) {
    .nemanex-home-button {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
        max-width: 300px;
    }
}