body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-size: 16px;
			color: #808080;
        }
		
		
		.hero a, .hero a:visited{color: #94277b;}
.hero a:hover{color: #f56734;}


.hero ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 1rem;
}
.hero ul li{
	position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}

.hero ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #94277b;
    border-radius: 50%;
}

.hero ol {
list-style-type: none;
padding-left: 5px; 
margin-bottom: 1rem;
}
.hero ol li {
position: relative;
padding-left: 30px; 
margin-bottom: 5px;
}
.hero ol li::before {
content: counter(list-item); 
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%); 
width: 20px;
height: 20px;
background-color: #94277b;
color: white; 
border-radius: 50%; 
text-align: center; 
line-height: 21px;
font-size: 12px;
}
		

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
           
            padding: 10px 0;
            text-align: center;
        }

       

        nav {
            background-color: #46a1b4;
        }

        nav .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: white;
            border: none;
            background: none;
            padding: 10px;
            cursor: pointer;
            text-align: left;
        }

        nav .menu {
            display: flex;
            justify-content: center;
            gap: 15px;
			padding: 7px 0;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            padding: 10px 20px;
        }

        nav a:hover {
            background-color: #2c6774;
            border-radius: 5px;
        }

        .hero {
            padding: 30px 15px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #333;
        }
		
		.hero h2, .hero h3, .hero h4, .hero h5, .hero h6{color: #333;}

        .hero p {
            color: #666;
            padding: 5px 0;
        }
		
		.hero-image{
			border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 10px;
		}
		
		
		.product-image img{
			border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 10px;
		}
		
		
		
		blockquote {
    background: #f8f8f8 url(../../site/img/quote.png) no-repeat 16px 20px;
    padding: 20px 20px 20px 55px;
    margin: 0px 0px 25px 0px;
		}
		

        footer {
            background-color: #1c1e1f;
        }

		footer a, footer a:visited{
			color: #808080;
			    text-decoration: none;
		}
		footer a:hover{ color: #f56734;}
		
        .footer-columns {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 15px;
            padding: 15px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
			color: #808080;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .footer-column p {
            font-size: 0.9rem;
            color: #808080;
        }

        @media (max-width: 768px) {
            nav .menu {
                display: none;
                flex-direction: column;
                background-color: #4096a8;
            }

            nav .menu.open {
                display: flex;
            }

            nav .menu-toggle {
                display: block;
            }

            .footer-columns {
                flex-direction: column;
                gap: 20px;
            }
        }
	
    .latest-news {
            padding: 30px 15px;
        background-color: #f9f9f9;
    }

    .latest-news h2 {
        font-size: 2rem;
            margin-bottom: 15px;
            color: #333;
    }

	
	img {
    max-width: 100%;
    height: auto;
}
	

.panel form p {
    margin-bottom: 15px;
}

.panel input[type="text"],
.panel textarea {
    width: 80%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.panel textarea {
    resize: none;
    height: 120px;
}

.panel input[type="submit"] {
    width: 30%;
    background-color: #94277b;
    color: #ffffff;
    border: none;
    padding: 15px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.panel input[type="submit"]:hover {
    background-color: #f56734;
}

.panel input::placeholder,
.panel textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.panel input:focus,
.panel textarea:focus {
    border-color: #94277b;
    outline: none;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {

    .panel h2 {
        font-size: 1.25rem;
    }

    .panel input[type="text"],
    .panel textarea,
    .panel input[type="submit"] {
        font-size: 14px;
    }
}
