        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, #009ffd 60%, #ff5f6d 100%);
            background-size: 200% 200%;
            animation: gradientAnimation 30s ease infinite;
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 0%; }
        }

        /* Ограничение ширины страницы */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Шапка */
        header {
            background-color: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            flex: 1;
            text-align: left;
        }

        .logo img {
            max-height: 50px;
        }

        .header-info {
            flex: 2;
            text-align: center;
        }

        .header-info p {
            margin: 5px 0;
        }

        .contacts {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .contacts a {
            color: #333;
            text-decoration: none;
            margin-bottom: 5px;
        }

        .contacts a:hover {
            text-decoration: underline;
        }

        /* Слайдер */
        .slider {
            position: relative;
            width: 100%;
            max-width: 1300px; /* Фиксированная ширина слайдера */
            margin: 0 auto; /* Центрирование */
            overflow: hidden;
            height: 30vh; /* Высота слайдера, адаптивная высота */
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }

        /* Блок О компании */
        .about {
            padding: 40px 20px;
            text-align: center;
            flex-grow: 1;
        }

        .about h2 {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .about p {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Подвал */
        footer {
            background-color: #f1f1f1;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            color: #666;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        footer a {
            color: #333;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo, .header-info, .contacts {
                text-align: center;
                margin-bottom: 10px;
            }

            .logo img {
                max-height: 40px;
            }

            .header-info p {
                font-size: 0.9em;
            }

            .about h2 {
                font-size: 1.5em;
            }

            .about p {
                font-size: 1em;
            }

            .slider {
                height: 200px;
            }
        }