.faq-section {
		padding: 4rem 2rem;
		background-color: #f8f8f8;
	}

	.faq-container {
		max-width: 1200px;
		margin: 0 auto;
	}

	.faq-title {
		color: #FFB800;
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}

	.faq-heading {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.faq-item {
		border: 1px solid #e0e0e0;
		margin-bottom: 1rem;
		border-radius: 4px;
		background-color: #fff;
		overflow: hidden;
	}

	.faq-question {
		padding: 1.5rem;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: bold;
	}

	.faq-answer {
		padding: 0 1.5rem;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-out, padding 0.3s ease-out;
	}

	.faq-item.active .faq-answer {
		padding: 1.5rem;
		max-height: 500px;
	}

	.faq-toggle {
		font-size: 1.5rem;
		transition: transform 0.3s ease;
	}

	.faq-item.active .faq-toggle {
		transform: rotate(45deg);
	}