#Servesbox1 {
	justify-content: space-around;
	border-width: 4px;
	border-style: solid;
	border-image: linear-gradient(to right, #e5e5e5, rgba(229,229,229, 20%), rgba(229,229,229, 20%), rgba(229,229,229, 80%) 40%, rgba(229,229,229, 80%) 60%, rgba(229,229,229, 20%), rgba(229,229,229, 20%), #e5e5e5) 1;
	border-right: 0;
	border-left: 0;
	border-top: 0;
	background-color: rgba(300, 300, 300, .9);
	padding: 2%;
	padding-top: 6%;
	width: 100vw;
	display: flex;
	flex-flow: row;
}
#Servesbox2 {
	justify-content: space-around;
	border-width: 4px;
	border-style: solid;
	border-image: linear-gradient(to right, #e5e5e5, rgba(229,229,229, 20%), rgba(229,229,229, 20%), rgba(229,229,229, 80%) 40%, rgba(229,229,229, 80%) 60%, rgba(229,229,229, 20%), rgba(229,229,229, 20%), #e5e5e5) 1;
	border-right: 0;
	border-left: 0;
	border-top: 0;
	background-color: rgba(300, 300, 300, .9);
	padding: 2%;
	padding-top: 6%;
	width: 100vw;
	display: flex;
	flex-flow: row-reverse;
}
#Servesbox3 {
	justify-content: space-around;
	background-color: rgba(300, 300, 300, .9);
	padding: 2%;
	padding-top: 6%;
	width: 100vw;
	display: flex;
	flex-flow: row
}
.ServesTextBox {
	padding:0 2% 0 2%;
	width: 50%;
	display: flex;
	flex-flow: column;
}
#Servesbox1 > .ServesTextBox, #Servesbox3 > .ServesTextBox{
	align-items:flex-end;
}
#Servesbox1  .Title, #Servesbox3  .Title {
	text-align:end;
}
.ServesPhoto {
	background-color: rgba(300, 300, 300, .9);
	padding:0 2%;
	width: 41%;
	height: auto;
}
.Title {
	background-color: rgb(300, 300, 300);
	width: 100%;
	padding: 0 1% 4% 1%;
	color: black;
	font-weight:300;
	margin-bottom: 0;
}
.Text {
	background-color: rgb(300, 300, 300);
	width: 100%;
	padding: 2% 3%;
	text-align: left;
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	margin: 0;
}

.service-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Убираем рамку со всех сторон, оставляем только полосу снизу */
.service-item {
	margin-bottom: 10px;
	overflow: hidden;
	border-bottom: 1px solid #ccc; /* Только нижняя серая полоса */
	border-radius: 0;
}

.service-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	background: #fff;
	cursor: pointer;
	transition: background 0.3s;
}

	.service-header:hover {
		background: #fff;
	}

.service-info {
	display: flex;
	align-items: center;
}

.service-icon {
	width: 64px;
	height: 64px;
	margin-right: 10px;
}

.service-title {
	font-size: 18px;
	font-weight:300;
}

.arrow {
	font-weight:300;
	font-size: 20px;
	transition: transform 0.3s;
	color: #000;
}

/* Описание с анимацией по max-height, без дополнительной полосы сверху */
.service-description {
	font-size:15px;
	font-weight:300;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 10px;
	border-top: none; /* Убираем верхнюю полосу */
}

/* Переворот стрелочки при открытом описании */
.service-item.active .arrow {
	transform: rotate(180deg);
}


@media only screen and (max-width: 768px) {
	#Servesbox1, #Servesbox2, #Servesbox3{
		align-items:center;
		flex-flow:column;
	}
	#Servesbox1{
		padding-top:25%;
	}
	.Title{
		padding-top:30px;
	}
	.ServesTextBox {
		width: 100%;
	}
	.ServesPhoto{
		width:90%;
	}
	#Servesbox1 .Title, #Servesbox2 .Title, #Servesbox3 .Title {
		text-align: center;
	}
}
