/* Общие стили */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #333333;
      color: #f0f0f0;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    h1 {
      margin-top: 0;
    }

    .header {
      color: #ffffff;
      padding: 0px;
    }

    .header img {
      max-width: 100%;
      height: auto;
    }

    .price-list {
      margin-bottom: 20px;
    }

    .price-list table {
      width: 100%;
      border-collapse: collapse;
      border: 1px solid #ccc;
    }

    .price-list th,
    .price-list td {
      padding: 10px;
      border: 1px solid #ccc;
    }

    .price-list th {
      background-color: #444444;
      font-weight: bold;
    }

    .order-button {
      display: inline-block;
      padding: 8px 20px;
      font-size: 16px;
      text-align: center;
      background-color: #4CAF50;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .order-button:hover {
      background-color: #45a049;
    }

    .demo-button {
      display: inline-block;
      padding: 8px 20px;
      font-size: 16px;
      text-align: center;
      background-color: #008CBA;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .demo-button:hover {
      background-color: #007A99;
    }

    .toggle-switch {
      position: fixed;
      top: 20px;
      left: 330px;
      display: inline-block;
      width: 40px;
      height: 20px;
      background-color: #ccc;
      border-radius: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .toggle-switch-inner {
      display: block;
      width: 16px;
      height: 16px;
      margin: 2px;
      background-color: #ffffff;
      border-radius: 50%;
      transition: transform 0.3s ease;
    }

    input[type="checkbox"] {
      display: none;
    }

    input[type="checkbox"]:checked + .toggle-switch .toggle-switch-inner {
      transform: translateX(20px);
    }

    /* Стили для светлого режима */
    body.light-mode {
      background-color: #f0f0f0;
      color: #333333;
    }

    body.light-mode .header {
      background-color: #4CAF50;
    }

    body.light-mode .price-list th {
      background-color: #f2f2f2;
    }

    body.light-mode .order-button {
      background-color: #4CAF50;
    }

    body.light-mode .demo-button {
      background-color: #008CBA;
    }

    /* Стили для мобильных устройств */
    @media (max-width: 480px) {
      .container {
        padding: 10px;
      }

      .order-button,
      .demo-button {
        font-size: 14px;
        padding: 6px 16px;
      }
    }

    /* Стили для слайдера */
		.slider-container {
      width: 100%;
      max-width: 400px;
      height: 370px;
      overflow: hidden;
      position: relative;
    }
    
    .slider-list {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.5s ease;
    }
    
    .slider-item {
      flex: 0 0 33.33%;
      height: 100%;
    }
    
    .slider-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .slider-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      color: #fff;
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    
    .slider-control-left {
      left: 10px;
    }
    
    .slider-control-right {
      right: 10px;
    }

    /* фуутер */
		body {
      margin: 0;
      padding: 0;
    }
    
    .footer {
      background-color: #333;
      color: #fff;
      padding: 20px;
      text-align: center;
      font-family: Arial, sans-serif;
    }
    
    .footer p {
      margin: 0;
      font-size: 14px;
    }
    
    .footer a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer a:hover {
      color: #ffcc00;
    }
    
    .footer-logo {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }
		
    /* соц сети */
		body {
      background-color: #333333;
      color: #f0f0f0;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }
    
    .contact-module {
      background-color: #222222;
      padding: 20px;
      text-align: center;
    }
    
    .contact-module-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    
    .contact-module-description {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .contact-module-social-icons {
      margin-top: 10px;
    }
    
    .contact-module-social-icons a {
      display: inline-block;
      margin: 0 5px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #fff;
      line-height: 40px;
      text-align: center;
      transition: background-color 0.3s ease;
    }
    
    .contact-module-social-icons a:hover {
      background-color: #ffcc00;
    }
    
    .contact-module-social-icons a img {
      max-width: 100%;
      max-height: 100%;
    }
    
    @media (max-width: 480px) {
      .contact-module {
        padding: 10px;
      }
    }