body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: #f6f7fb;
            color: #333;
        }
        header {
            background: rgba(255, 255, 255, 0.85);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header h1 {
            color: #457297;
	font-family: 'Grape Nuts', cursive; /* Применяем шрифт */
            font-size: 30px;
        }
        nav a {
            margin-left: 20px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }
        nav a:hover {
            color: #6a11cb;
        }
        .btn {
            background:#457297;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
        }
        .btn:hover {
            opacity: 0.7;
        }
        .hero {
            background: linear-gradient(135deg, rgba(161,196,253,0.6), rgba(194,233,251,0.4), rgba(251,194,235,0.3));
            padding: 0px 0px;
            color: #457297;
		display: flex;
   	 	align-items: center;
   	 	justify-content: space-between;
        }
        .hero .text {
    flex: 1;
    text-align: center;
	margin-left: 200px;
	font-size: 19px;
	max-width: 600px;
	
}

.hero img {
    max-width: 260px;
margin: 0; 
margin-top: -30px;
}

        .section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        h2 {
            color: #6a11cb;
	text-align: center;
        }
        ul {
            list-style: none;
            padding: 0;
        }
        ul li::before {
            content: "✔ ";
            color: #6a11cb;
        }
        .images {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .images img {
            flex: 1 1 calc(50% - 20px);
            border-radius: 15px;
            max-width: 100%;
        }
        footer {
            background: linear-gradient(135deg, rgba(161,196,253,0.6), rgba(194,233,251,0.4), rgba(251,194,235,0.3));
            color: #457297;
            text-align: center;
            padding: 15px;
            margin-top: 30px;
        }

 .gallery {
    display: flex;
 justify-content: center;
    gap: 30px; 
  }
  .item {
    text-align: center;
    font-size: 16px;
  }
  .item img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
  }