	footer {
		background: #333;
		color: white;
		padding: 30px 0 20px 0;
		margin-top: 50px;
	}

	.footer-content {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 30px;
	}

	.footer-section {
		flex: 1;
		min-width: 200px;
	}

	.footer-section h3 {
		color: #4caf50;
		margin-bottom: 15px;
		font-size: 18px;
	}

	.footer-section p,
	.footer-section a {
		color: #ccc;
		text-decoration: none;
		line-height: 1.6;
	}

	.footer-section a:hover {
		color: #4caf50;
	}

	.footer-bottom {
		text-align: center;
		margin-top: 30px;
		padding-top: 20px;
		border-top: 1px solid #555;
		color: #999;
		font-size: 14px;
	}

	.social-links {
		display: flex;
		gap: 15px;
		margin-top: 10px;
	}

	.social-links a {
		display: inline-block;
		width: 36px;
		height: 36px;
		background: #555;
		border-radius: 50%;
		text-align: center;
		line-height: 36px;
		transition: background 0.3s;
	}

	.social-links a:hover {
		background: #4caf50;
	}

	/* Адаптивность для футера */
	@media (max-width: 768px) {
		.footer-content {
			flex-direction: column;
			gap: 20px;
		}
		
		.footer-section {
			text-align: center;
		}
		
		.social-links {
			justify-content: center;
		}
	}
    /* Общие стили */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Arial', sans-serif;
	}

	body {
		background-color: #f5f5f5;
		color: #333;
		line-height: 1.6;
	}

	.container {
		width: 90%;
		max-width: 1200px;
		margin: 0 auto;
	}

	/* Стили для хедера */
	header {
		background-color: #fff;
		box-shadow: 0 2px 5px rgba(0,0,0,0.1);
		padding: 15px 0;
	}

	.header-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		display: flex;
		align-items: center;
	}

	.logo-img img {
		max-width: 150px;    
		max-height: 60px;    
		width: auto;         
		height: auto;       
	}

	.logo-text {
		font-size: 24px;
		font-weight: bold;
		color: #2e7d32;
	}

	nav ul {
		display: flex;
		list-style: none;
	}

	nav ul li {
		margin-left: 25px;
	}

	nav ul li a {
		text-decoration: none;
		color: #333;
		font-weight: 500;
		transition: color 0.3s;
	}

	nav ul li a:hover {
		color: #2e7d32;
	}