	

	/* Стили для баннера */
	.banner {
		background: rgb(58, 159, 51);
		color: white;
		padding: 40px 0;
		text-align: center;
		margin-bottom: 30px;
	}

	.banner h1 {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.banner p {
		font-size: 18px;
		max-width: 800px;
		margin: 0 auto;
	}
	/* ВелоПро - Магазин велосипедов и аксессуаров */
	.title-sl{
		color:#2e7d32;
		margin-left:160px;
	}

	/* Стили для секций */
	.sections {
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
		flex-wrap: wrap;
	}

	.section {
		background-color: #fff;
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		padding: 20px;
		width: 32%;
		min-height: 300px;
	}

	.section p {
		color: #2e7d32;
		margin-bottom: 15px;
		padding-bottom: 10px;
		border-bottom: 2px solid #e0e0e0;
	}

	.section ul {
		list-style: none;
	}

	.section ul li {
		margin-bottom: 10px;
		padding-left: 20px;
		position: relative;
	}

	.section ul li:before {
		content: "-";
		color: #2e7d32;
		position: absolute;
		left: 0;
	}

	.section a {
		color: #2e7d32;
		text-decoration: none;
	}

	.section a:hover {
		text-decoration: underline;
	}

	/* Адаптивность */
	@media (max-width: 768px) {
		.sections {
			flex-direction: column;
		}
		
		.section {
			width: 100%;
			margin-bottom: 20px;
		}
		
		.header-content {
			flex-direction: column;
			text-align: center;
		}
		
		nav ul {
			margin-top: 15px;
			justify-content: center;
		}
		
		nav ul li {
			margin: 0 10px;
		}
	}
	
	
/* Стили для слайдера специальных предложений */
.promo-slider {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #fff;
}

.slider-container {
    position: relative;
    background: #2e7d32;
    min-height: 300px; /* Увеличил минимальную высоту */
    height: 350px; /* Добавил фиксированную высоту */
    border-radius: 8px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: auto; /* Добавил прокрутку если контент не помещается */
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 700px;
    width: 100%;
    max-height: 100%; /* Ограничиваем высоту контента */
    overflow-y: auto; /* Добавляем прокрутку если нужно */
    padding: 10px 0;
}

/* Стили для основного текста акции (первый параграф) */
.slide-content p:first-of-type {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Стили для описания акции (второй параграф) */
.slide-content p:nth-of-type(2) {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.slide-features span {
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

.btn-slider {
    display: inline-block;
    background: white;
    color: #2e7d32;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
}

.btn-slider:hover {
    background: #f5f5f5;
    border-color: #2e7d32;
    transform: translateY(-2px);
}

/* Кнопки навигации */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

/* Точки-индикаторы */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.7);
}



/* Адаптивность */
@media (max-width: 768px) {
    .slider-container {
        min-height: 320px;
    }
    
    .slide {
        padding: 25px 15px;
    }
    
    .slide-content p:first-of-type {
        font-size: 1.4rem;
    }
    
    .slide-content p:nth-of-type(2) {
        font-size: 1rem;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .slide-features span {
        white-space: normal;
        text-align: center;
        width: 100%;
        max-width: 200px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        min-height: 350px;
    }
    
    .slide-content p:first-of-type {
        font-size: 1.2rem;
    }
    
    .btn-slider {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .slide-features span {
        font-size: 13px;
        padding: 6px 10px;
    }
}