      
   /* Фон тянется на всю ширину экрана */
        .documents-section1 {
            width: 100%;
            padding: 40px 15px;
            text-align: center;
            background: #f8f9fa;
            border-radius: 10px;
            margin: 0 auto;
        }

        .documents-title1 {
            font-size: 1.5em;
            color: #000;
             
            margin-bottom: 20px;
        }

        .documents-container1 {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 25px; /* Отступы между карточками */
            justify-content: center; /* Центрируем элементы на маленьких экранах */
        }

        .document-card1 {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 15px; /* Уменьшаем отступы внутри карточки */
            text-align: center;
            max-width: 320px;
            flex: 1;
            margin: 10px 0; /* Отступ сверху и снизу для каждого блока */
        }

        .document-image1 {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .document-title1 {
            font-size: 1.1em;
            color: #000; 
            margin-bottom: 10px;
        }

        .document-info1 {
            font-size: 0.9em;
            color: #555;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .document-info1 span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .document-button1 {
            display: inline-block;
            padding: 10px 15px;
            border: 2px solid #007BFF;
            color: #007BFF;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .document-button1:hover {
            background-color: #007BFF;
            color: #fff;
        }

        .more-info1 {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 15px;
            color: #007BFF;
            font-size: 1em;
            text-decoration: none;
            border: 1px solid #007BFF;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .more-info1:hover {
            background: #007BFF;
            color: #fff;
        }

        @media (max-width: 1024px) {
            .document-card1 {
                max-width: 45%;
            }
        }

        @media (max-width: 768px) {
            .document-card1 {
                max-width: 100%;
            }
        } 
        
        
        
        
        
        
       
        .price-block {
            max-width: 90%;
            margin: 0 auto; 
        }
        .price-title {
            font-size: 24px;
             
        }
        .price-desc {
            font-size: 16px;
            margin: 5px 0 25px;
        }
        .highlight {
            font-weight: bold;
            background: linear-gradient(transparent 60%, #ffecb3 60%);
        }
        .price {
            font-size: 36px;
            text-align: center;
        }
        .currency {
            font-size: 18px;
        }
        .old-price {
            font-size: 14px;
            color: #888;
            text-decoration: line-through;
            text-align: center;
        }
        @media (min-width: 768px) {
            .price-block {
                max-width: 400px;
            }
            .price-title {
                font-size: 30px; 
            }
            .price {
                font-size: 48px;
            }
            .currency {
                font-size: 24px;
            }
            .old-price {
                font-size: 16px; 
            }
        }
        
        
        
       .custom-icons {
        list-style: none;
        padding-left: 20px;
    }
    .custom-icons li::before {
        content: "◉";
        margin-right: 2px;
    }
    
    
    
    
    .text-example {
            font-size: 14px;  /* Размер шрифта */
            color: #6a6a6a;   /* цвет текста*/
        }
        
        .text-example a {
    color: #6a6a6a; /* Серый цвет ссылок */
    text-decoration: underline; /* Подчеркивание ссылок */
}

.text-example a:hover {
    color: #2c7efc; /* Синий цвет при наведении */
}













  .custom-icons1 {
        list-style: none;
        padding-left: 20px;
    }
    .custom-icons1 li::before {
        content: "◉";
        margin-right: 2px;
    }
    
    
    
    
    .text-example1 {
            font-size: 18px;  /* Размер шрифта */
            color: #6a6a6a;   /* цвет текста*/
        }
        
        .text-example1 a {
    color: #6a6a6a; /* Серый цвет ссылок */
    text-decoration: underline; /* Подчеркивание ссылок */
}

.text-example1 a:hover {
    color: #2c7efc; /* Синий цвет при наведении */
}







.block1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.card2 {
    background: #ededed;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 250px; /* Фиксированная ширина */
    height: 350px; /* Фиксированная высота */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.image3 img {
    width: 100%;
    height: 150px; /* Фиксированная высота изображения */
    object-fit: cover; /* Подгонка изображения */
    border-radius: 10px;
}

.name4 {
    font-weight: bold;
    margin-top: 10px;
}

.position5 {
    font-size: 14px;
    color: gray;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .block1 {
        flex-direction: column;
        align-items: center;
    }
    .card2 {
        width: 90%; /* Адаптивная ширина на мобильных */
        max-width: 300px; /* Ограничение максимальной ширины */
        height: auto; /* Автоматическая высота */
    }
    .image3 img {
        height: 180px; /* Чуть больше на мобильных */
    }
}











.block_947 {
    text-align: center;
    max-width: 1200px; /* Центрирование по ширине */
    width: 90%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto; /* Центрирование блока */
}

/* Заголовок */
.title_315 {
    font-size: 26px;
    margin-bottom: 20px;
}

/* Грид-сетка (выравнивание по центру) */
.grid_789 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center; /* Центрирование элементов */
    width: 100%;
    max-width: 1200px; /* Ограничение ширины */
}

/* Карточки шагов */
.step_542 {
    display: flex;
    align-items: center;
    background: #eef7f2;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Фиксированные номера шагов */
.circle_678 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #28a745;
    color: white;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 15px;
}

/* Контент с отступом от фиксированной иконки */
.content_321 {
    text-align: left;
    width: 100%;
}

.content_321 h3 {
    font-size: 24px;
    margin: 0;
}

.content_321 h4 {
    font-size: 18px;
    margin: 0;
}

.content_321 p {
    font-size: 14px;
    color: #555;
    margin: 5px 0 0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .grid_789 {
        grid-template-columns: 1fr;
    }

    .step_542 {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .circle_678 {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .content_321 {
        text-align: center;
    }
}















  .container-1 {
            max-width: 1130px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 50px auto 0; /* 50px отступ сверху, auto по бокам для центрирования, 0 снизу */
        }

        .title-1 {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .description-1 {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
        }

        .download-link-1 {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .download-link-1:hover {
            background-color: #0056b3;
        }

        .divider-1 {
            border-top: 1px solid #ddd;
            margin: 20px 0;
        }
        
        
        
        
        .reviews-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #fafafa;
  border-radius: 8px;
}

.reviews-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #0a4a7d;
}

.review-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s ease;
}

.review-item:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}

.review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #333;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0a4a7d;
  text-align: right;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
  .reviews-section {
    padding: 12px;
  }

  .reviews-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .review-item {
    padding: 12px 16px;
    margin-bottom: 12px;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .review-author {
    font-size: 0.9rem;
  }
}
