/* SERVICES (Accordion) */
.services-section {
	padding: 60px 0;
}

.accordion-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 800px;
	margin: 0 auto;
}

.service-accordion {
	background-color: var(--acc-bg);
	color: var(--acc-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.service-accordion[open] {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 30px;
	cursor: pointer;
	list-style: none;
	font-size: 1.2rem;
	font-weight: 700;
}

.service-summary::-webkit-details-marker {
	display: none;
}

.service-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.service-header img {
	background: #fff;
	border-radius: 5px;
	width: 30px;
	height: 30px;
	object-fit: contain;
	padding: 2px;
}

.expand-icon {
	font-size: 1.8rem;
	font-weight: 400;
	transition: transform 0.3s ease;
	line-height: 1;
}

.service-accordion[open] .expand-icon {
	transform: rotate(45deg);
}

.service-details {
	padding: 0 30px 25px;
	line-height: 1.6;
	font-size: 1.05rem;
	opacity: 0.9;
}
