
  body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #000;
      color: #fff;
  }
  header {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
      display: flex;
  }
  nav {
      display: flex;
  }
  nav a {
      color: #fff;
      text-decoration: none;
      padding: 10px 15px;
  }
  a {
    text-align: left;
    color: #fff;
  }
  .hamburger {
      display: none;
      font-size: 180%;
      cursor: pointer;
      position: fixed;
      top: 10px;
      right: 180px;
      z-index: 999; /* Высота по z */
  }
  .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background-color: #333;
      color: #fff;
      transition: all 0.3s;
  }
  .sidebar a {
      color: #fff;
      text-decoration: none;
      display: block;
      padding: 15px;
  }
  .sidebar.active {
      left: 0;
  }
  section {
      padding: 20px;
      display: flex;
      border-bottom: 1px solid #333;
  }
  p, ol, h4 {
    align-self: flex-start;
    text-align: left;
  }
  .section1 {
       background-image: url('/images/autovoz.png');
       background-size: cover;
       align-items: flex-end;
       height: 600px

   }

  .column {
      flex: 1;
      padding: 20px;
  }
  .column_orange {
      flex: 1;
      padding: 20px;
      background-color: #f17c0e;
      color: #fff;
  }
  footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 10px 0;
  }
  .accordion {
      background-color: #000;
      color: #fff;
      cursor: pointer;
      padding: 10px;
      width: 100%;
      text-align: left;
      font-size: 110%;
      border: none;
      outline: none;
      transition: background-color 0.3s;
      display: flex
      justify-content: space-between;
  }
  .accordion:after {
    content: '\02795'; /* Добавляем галочку вниз */
    font-size: 110%;
    float: right;
  }

  .active:after {
    content: "\025BE"; /* Заменяем галочку вниз на галочку вверх */
  }

  .panel {
      display: none;
      padding: 10px;
      width: 100%;
      background-color: #222;
  }
  .active {
      background-color: #555;
  }
  svg {
      width: 5rem;
      height: 6rem;
  }
  .n_svg {
    width: 1rem;
    height: 1rem;
  }
  .r_svg {
    width: 1rem;
    height: 1rem;
    transform: rotate(180deg);
  }
  .back-to-top {
      position: fixed;
      bottom: 10px;
      right: 10px;
      background-color: #f17c0e;
      color: #fff;
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      border: 1px solid black;
      cursor: pointer;
      display: none;
  }
  .floating-link {
     position: fixed;
     top: 10px;
     right: 10px;
     background-color: #f17c0e;
     color: white;
     padding: 10px 10px;
     border-radius: 20px;
     text-decoration: none;
     transition: background-color 0.3s;
     border: 1px solid black;
     z-index: 999; /* Высота по z */
    }
   .floating-link:hover {
     background-color: #ff6600; /* Яркий оранжевый цвет */
   }
   footer{
     display: flex;
     justify-content: space-evenly;
   }
   @media screen and (max-width: 700px) {
      section {
          flex-direction: column;
          text-align: center;
      }
      nav {
        display: none;
      }
      .hamburger {
        display: block;
      }
  }
