/* Общие стили */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Плавная прокрутка */
  }
  
  /* Навигация */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 10px 20px;  Уменьшенный padding */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Легкая тень */
  }
  
  .navbar .logo {
    font-size: 60px;
    font-weight: bold;
  }
  
  .navbar .menu {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  .navbar .menu li {
    cursor: pointer;
  }
  
  .navbar .menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .navbar .menu li a:hover {
    color: #ff6347;
  }
  
  /* Секция Hero (Главная) */
  .hero {
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px; /* Уменьшенные отступы */
    min-height: 70vh; /* Высота */
    margin-top: 60px; /* Учитываем фиксированное меню */
  }
  
  .hero-content {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .hero-content .text {
    flex: 1;
    max-width: 600px; /* Ограничим ширину текста */
    text-align: left; /* Выравнивание текста влево */
  }
  
  .hero-content h1 {
    font-size: 2.5rem; /* Уменьшенный размер заголовка */
    margin-bottom: 15px;
    color: #fff;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .hero-content .buttons a {
    margin-right: 10px;
  }
  
  .hero-content .image {
    flex: 1;
    text-align: center; /* Центрируем изображение */
  }
  
  .hero-content img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px; /* Скругленные углы */
  }
  
  /* Другие секции */
  .section {
    padding: 80px 20px;
    text-align: center;
  }
  
  .about {
    background-color: #eaeaea;
  }
  
  .features {
    background-color: #ffffff;
  }
  
  .contact {
    background-color: #eaeaea;
  }
  
  /* Стили кнопок */
  .btn {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    display: inline-block;
  }
  
  .btn-primary {
    background-color: #007bff;
  }
  
  .btn-secondary {
    background-color: #6c757d;
  }
/* Общие стили для секций с классом row */
.section-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Центрирование по вертикали */
    padding: 50px 20px;
  }
  
  .section-row .text {
    flex: 1;
    padding: 20px;
  }
  
  .section-row .image {
    flex: 1;
    text-align: center;
    padding: 20px;
  }
  
  .section-row img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px; /* Легкая эстетика */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Тень */
  }
  
  .section-row h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
  }
  #section1{
    background-color: #2A2A2A;
  }
  .section-row p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
  }
  .hero {
    position: relative; /* Для управления вложенными элементами */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    min-height: 100vh; /* Высота секции */
    overflow: hidden;
    z-index: 0; /* Слой для основного содержимого */
  }
  
  /* Декоративный фон */

  
  .hero .content {
    position: relative; /* Для текста и изображения */
    z-index: 1; /* Поверх фона */
  }
  
  /* Общий стиль для секций с макетом, как в section1 */
.hero, .section-similar {
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    min-height: 70vh; /* Высота секции */
    margin-top: 60px; /* Учитываем фиксированное меню */
  }
  
  .section-similar:nth-child(even) {
    background-color: #f9f9f9; /* Чередование цвета фона */
  }
  
  .section-similar .text {
    flex: 1;
    max-width: 600px;
    text-align: left;
  }
  
  .section-similar h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .section-similar p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .section-similar .buttons a {
    margin-right: 10px;
  }
  
  .section-similar .image {
    flex: 1;
    text-align: center;
  }
  
  .section-similar img {
    width: 50%;
    max-width: 400px;
    border-radius: 10px;
  }  
  .apps-btn a {
    margin: 0px 6px 10px 6px;
    display: inline-block;
  }
  .footer {
    background-color: #2A2A2A;
    color: #fff;
    padding: 40px 20px;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-logo {
    flex: 1;
  }
  
  .footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  .footer-nav {
    flex: 1;
    text-align: center;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin: 5px 0;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
    color: #4CAF50;
  }
  
  .footer-contact {
    flex: 1;
    text-align: right;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
    margin: 5px 0;
  }
  
  .footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-contact a:hover {
    color: #4CAF50;
  }
  
  /* Адаптивные стили */
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-logo,
    .footer-nav,
    .footer-contact {
      text-align: center;
    }
  }