 :root {
            --primary-color: rgb(255, 36, 0);
            --accent-color: rgb(255, 195, 0);
            --primary-dark: rgb(200, 30, 0);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            padding: 5px 0 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
                    .models1 {
            font-weight: bold;
            color: rgb(255, 36, 0);
            text-align: center;
            font-size: 20px;
            }

             .menulink:link, .menulink:visited, .menulink:hover, .menulink:focus, .menulink:active{
                color: white; /* Цвет ссылок */
                weight: bold;
                text-decoration: none;
               }

               .phoneurl:link, .phoneurl:visited, .phoneurl:hover, .phoneurl:focus, .phoneurl:active{
                color: white; /* Цвет ссылок */
                weight: bold;
                text-decoration: none;
               }



        .header-contact {
            color: white;
            font-size: 14px;
            text-align: right;
        }

        .header-contact .contact-row {
            margin-bottom: 5px;
        }

        .header-contact .contact-row:last-child {
            margin-bottom: 0;
        }

        .header-contact i {
            margin-right: 8px;
            width: 16px;
        }

        .logo-placeholder {
            width: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            border-radius: 8px;
        }

        .social-icons a {
            color: white;
            font-size: 24px;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            background-image: url('images/main.jpg');
            background-repeat: no-repeat;
            background-position: center center;
            background-color: white;
  background-size: auto;
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero h1 {
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease;
        }

        /* Product Description */
        .product-description {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .product-description p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Advantages Section */
        .advantages {
            padding: 80px 0;
        }

        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        /* Notice Block */
        .notice-block {
            background: var(--accent-color);
            padding: 40px 0;
            text-align: center;
        }

        .notice-block h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .notice-block p {
            color: var(--primary-color);
            font-size: 1.2rem;
            font-weight: 500;
        }

        .blinking-icon {
            animation: blink 2s infinite;
            margin: 0 10px;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .carousel-item img {
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--primary-color);
            border-radius: 50%;
            padding: 20px;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
        }

        .price-card {
            background: white;
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .price-card:hover {
            transform: translateY(-5px);
            border: 2px solid var(--primary-color);
        }

        .price {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 80px 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Desktop contact info */
        .desktop-contact {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: rgba(255, 36, 0, 0.9);
            color: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            font-size: 14px;
            min-width: 220px;
        }

        .desktop-contact .phone-numbers {
            margin-bottom: 15px;
        }

        .desktop-contact .phone-numbers div {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .desktop-contact .phone-numbers i {
            margin-right: 8px;
            width: 16px;
        }

        .desktop-contact .email-row {
            display: flex;
            align-items: center;
        }

        .desktop-contact .email-row i {
            margin-right: 8px;
        }

        .hero .company-name {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
                padding: 0 20px;
            }

            .hero .company-name {
                font-size: 2.2rem;
                letter-spacing: 2px;
                margin-bottom: 15px;
            }

            .social-icons a {
                font-size: 20px;
                margin: 0 5px;
            }

            .notice-block h3 {
                font-size: 1.5rem;
            }

            .notice-block p {
                font-size: 1rem;
            }

            .desktop-contact {
                display: none !important;
            }


        }


 }
