.ph-accordion {
	margin-bottom: 0;

	.accordion-item {
		border-bottom: 1px solid #cecece;

		.accordion-title {
			font-size: 20px;
			cursor: pointer;
			padding: 30px 0;
			font-weight: 600;
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 10px;
		}

		.accordion-content {
			font-size: 16px;
			max-height: 0;
			overflow: hidden;
			transition: min-height 0.3s ease;
		}

		.accordion-content p {
			margin: 5px 0 25px !important;
		}
	}
}

.rotate-icon {
	display: inline-block;
	margin: 0 10px;
	transition: transform 0.3s ease;
	height: 1em;
	width: 1em;

	svg {
		fill: #ccc !important;
	}
}

.rotate-icon.down {
	transform: rotate(45deg);
	svg {
		fill: #212121 !important;
	}
	
}
