.rp-faq-widget {
	width: 100%;
	position: relative;
	isolation: isolate;
	display: flow-root;
}

.rp-faq-heading {
	font-family: Ubuntu, sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: rgba(56, 180, 74, 1);
	margin: 0 0 24px;
}

.rp-faq-list {
	width: 100%;
}

.rp-faq-item {
	border-bottom: 1px solid #ebebeb;
	padding: 20px 24px;
	transition: background 0.2s ease;
}

.rp-faq-item.active {
	background: rgba(235, 235, 235, 0.4);
}

.rp-faq-question {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}

.rp-faq-number {
	font-family: Ubuntu, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #c0c0c0;
	min-width: 34px;
}

.rp-faq-question-text {
	flex: 1;
	font-family: Ubuntu, sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #1f2937;
}

.rp-faq-item.active .rp-faq-question-text {
	font-weight: 700;
}

.rp-faq-toggle-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: Ubuntu, sans-serif;
	font-size: 16px;
	color: #1f2937;
	transition: background 0.2s ease;
}

.rp-faq-icon-close {
	display: none;
}

.rp-faq-item.active .rp-faq-toggle-icon {
	background: rgba(56, 180, 74, 1);
	color: #fff;
}

.rp-faq-item.active .rp-faq-icon-plus {
	display: none;
}

.rp-faq-item.active .rp-faq-icon-close {
	display: block;
}

.rp-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	padding-left: 54px;
}

.rp-faq-item.active .rp-faq-answer {
	max-height: 300px;
	margin-top: 10px;
}

.rp-faq-answer p {
	font-family: Ubuntu, sans-serif;
	font-size: 14px;
	color: rgba(118, 118, 118, 1);
	margin: 0 0 10px;
	line-height: 1.5;
}

.rp-faq-answer p:last-child {
	margin-bottom: 0;
}

.rp-faq-answer strong,
.rp-faq-answer b {
	color: #1f2937;
	font-weight: 700;
}

.rp-faq-answer a {
	color: rgba(56, 180, 74, 1);
	text-decoration: underline;
}

.rp-faq-answer ul,
.rp-faq-answer ol {
	margin: 0 0 10px;
	padding-left: 20px;
	font-family: Ubuntu, sans-serif;
	font-size: 14px;
	color: rgba(118, 118, 118, 1);
	line-height: 1.5;
}

@media (max-width: 600px) {
	.rp-faq-heading {
		font-size: 24px;
	}
	.rp-faq-question-text {
		font-size: 15px;
	}
	.rp-faq-answer {
		padding-left: 0;
		margin-top: 8px;
	}
}
