<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			font-size: 16px;
        }
		
	.content p {
    padding: 5px 0;
    line-height: 20px;
}
		
		
		.content a, .content a:visited{color: #0073b7;}
.content a:hover{color: #fe3030;}


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

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

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

blockquote {
    background: linear-gradient(to right, #eff4f5 0, #e8f4f5 100%);
    border-left: 5px solid #0073b7;
    padding: 10px 15px;
    margin: 15px 0;
    font-style: italic;
	border-radius: 5px;
}

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

        .header {
            background: #0073b7;
            color: #fff;
			padding: 15px 0;
            
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #000;
            background: #fff;
            padding: 10px 15px;
            margin-bottom: 10px;
        }

        nav {
            width: 100%;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
        }

        nav ul li {
            display: inline;
			text-transform: uppercase;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
			padding: 10px 20px;
        }
		
		 nav ul li a:visited{color: #fff;}
		 nav ul li a:hover{color: #fe3030;}

        /* Ð‘Ð°Ð½Ð½ÐµÑ€ */
        .banner {
            text-align: center;
            background: #f5f5f5;
            padding: 20px;
        }

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

        /* ÐšÐ¾Ð½Ñ‚ÐµÐ½Ñ‚ */
        .content {
            padding: 30px 0;
        }

        .content h1 {
            font-size: 28px;
            margin-bottom: 20px;
        }
		
		.content h2 {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .services ul {
            list-style: none;
            padding: 0;
        }

        .services li {
            margin-bottom: 10px;
        }

        .buttons {
            text-align: center;
            margin-top: 20px;
        }

        .buttons a {
            display: inline-block;
            background: #0073b7;
            color: #fff;
            padding: 10px 20px;
            margin: 5px;
            text-decoration: none;
            border-radius: 5px;
        }

        footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 250px;
}

.footer-column h3 {
  color: #0073b7;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-column a {
  color: #0073b7;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a, .footer-column ul li a:visited {
  text-decoration: none;
  color: #0073b7;
}

.footer-column ul li a:hover{
	color: #fe3030;
}

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

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    margin-bottom: 20px;
  }
  
    .header {

			padding: 0;
            
        }
}
.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.info-block {

  padding: 5px 5px 5px 0;
}

.info-block h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.info-block p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

@media (max-width: 768px) {
  .info-container {
    grid-template-columns: 1fr;
  }
}

        .menu-toggle {
            display: none;
            background: #0073b7;
            color: #fff;
            border: none;
            padding: 10px;
            font-size: 18px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                display: none;
                background: #0073b7;
                padding: 15px;
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
                margin-bottom: 10px;
            }
        }
</pre></body></html>