.installation-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.accordion-item {
	background: none;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border: 1px solid rgba(174, 177, 199, 0.10);
    color: #AEB1C7;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background: #1F2028;
    border-radius: 8px;
    transition: color 0.3s ease;
}

.accordion-header:hover,
.accordion-item.active .accordion-header {
	color: #FFFFFF;
	border: 1px solid rgba(174, 177, 199, 0.25);
}

.accordion-icon {
	margin-right: 8px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.accordion-content > * {
    margin: 16px;
}

.accordion-title {
	flex: 1;
}

.accordion-content {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
	color: #AEB1C7;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
}

.accordion-item.active .accordion-content {
	max-height: 800px; 
	opacity: 1;
	visibility: visible;
}

.accordion-content ul{
    margin: 16px;
}
