* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  
  :root {
    /* colors */
    --brand: #b0b1b5;
    --brand-hover: #9597a0;
    --dark-background: #5361bd;
    --dark-background-hover: #4452a8;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f8f9fa;
    --accent: #ff6b6b;
    --success: #51cf66;
    --warning: #fcc419;
    --info: #339af0;
    
    /* fonts */
    --default-font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --primary-font-family: "Raleway", "sans-serif";
    --secondary-font-family: "Poppins", "sans-serif";
    
    /* container */
    --container: 0px 70px;
    --container2: 80px 70px;
    
    /* transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
  }
  
  ul, ol {
    list-style-type: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
  }
  
  .section-title {
    padding-bottom: 60px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--text-color), transparent 50%);
    position: relative;
    font-family: var(--primary-font-family);
  }
  
  .section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--brand);
    margin: 4px 10px;
  }
  
  .section-title p {
    color: var(--dark-background);
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--primary-font-family);
    padding-top: 4px;
  }

  /* Стили для заголовка секции товаров */
  #goods {
    margin-left: 70px;
    margin-top: 30px;
  }

  /* Анимации для элементов при прокрутке */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Белый разделитель для соединения волны с белым фоном */
  .white-spacer {
    height: 1px;
    background-color: white;
    position: relative;
    z-index: 0;
    margin-top: -1px;
  }

  /* Стили для футера */
  .footer {
    background-color: var(--dark-background);
    color: white;
    padding: 20px 0;
    margin-top: 0;
    position: relative;
  }

  .footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .footer-container {
    margin: var(--container);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    font-family: var(--primary-font-family);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
  }

  .footer-copyright {
    font-size: 14px;
    opacity: 0.8;
    font-family: var(--secondary-font-family);
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: center;
  }

  .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
    font-size: 14px;
    font-family: var(--secondary-font-family);
    font-weight: 400;
    letter-spacing: 0.3px;
  }

  .footer-contacts p {
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .footer-contacts p:hover {
    color: var(--brand);
    cursor: pointer;
  }

  /* Медиа-запросы для мобильных устройств */
  @media (max-width: 768px) {
    :root {
      --container: 0px 20px;
      --container2: 40px 20px;
    }
    
    .section-title {
      padding-bottom: 30px;
    }
    
    .section-title p {
      font-size: 22px;
    }

    #goods {
      margin-left: 20px;
    }

    .footer-container {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }

    .footer-contacts {
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --container: 0px 15px;
      --container2: 30px 15px;
    }
    
    .section-title {
      padding-bottom: 20px;
    }

    .section-title p {
      font-size: 20px;
    }

    #goods {
      margin-left: 15px;
    }

    .footer {
      padding: 20px 0;
    }

    .footer-logo {
      font-size: 20px;
    }

    .footer-copyright, .footer-contacts {
      font-size: 12px;
    }
  }
 