	.imagebanner {
		width: 100%;
		height: 400px;
		background-size: cover;
		background-position: 20% 51%;
	}

	/* FAQ */
	.faq-div {
		background-color: #F2F5F7;
	}

	.faq-container {
		width: 100%;
		margin: 0 auto;
		background-color: #f2f5f7;
		box-shadow: none;
		overflow: hidden;
		padding: 20px 0;
		border-bottom: 1px solid #e4e4e4;
	}

	.faq-header {
		background-color: transparent;
		color: #09445a;
		padding: 15px 0;
		text-align: center;
		max-width: 1100px;
		margin: 0 auto;

	}

	.faq-header h1 p {
		font-size: 22px;
		font-weight: 600;
		color: #09445a;
		font-family: "Noto Sans HK", Sans-serif;
		font-size: 45px;
		font-weight: 600;
	}

	.faq-categories {
		padding: 0 20px;
		column-count: 1;
		column-gap: 30px;
		max-width: 1100px;
		margin: 0 auto;
	}

	.faq-categories .category {
		break-inside: avoid;
		margin-bottom: 25px;
	}

	.category-title {
		font-size: 18px;
		font-weight: 600;
		color: #09445a;
		margin-bottom: 15px;
		padding-bottom: 8px;
		border-bottom: 1px solid #e0e0e0;
	}

	.category-tips-body {}

	.category-tips {
		font-size: 15px;
		font-weight: 600;
		color: #09445a;
		margin-bottom: 15px;
		padding-bottom: 8px;
		margin-left: 20%;
	}

	.faq-item {
		margin-bottom: 10px;
		overflow: hidden;
		border-radius: 0;
	}

	.faq-question {
		background-color: #e6ecef;
		padding: 12px 15px;
		cursor: pointer;
		display: flex;
		align-items: center;
		transition: background-color 0.2s;
		position: relative;
	}

	.faq-question:hover {
		background-color: #dde4e8;
	}

	.faq-number {
		display: inline-block;
		width: 25px;
		font-weight: bold;
		color: #09445a;
		font-size: 14px;
	}

	.faq-question-text {
		flex: 1;
		font-weight: 500;
		font-size: 14px;
	}

	.faq-toggle {
		font-size: 16px;
		color: #09445a;
		transition: transform 0.3s;
	}

	.faq-answer {
		padding: 0 15px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease, padding 0.3s ease;
	}

	.faq-answer.active {
		padding: 15px;
		max-height: 500px;
	}

	.faq-answer p {
		color: #868686;
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 1.5;
	}
    .faq-tips{
            text-align: center;
            padding: 30px;
		font-size: 13px;

    }

	/* 响应式设计 - 小屏幕时变为单列 */
	@media (max-width: 768px) {
		.faq-categories {
			column-count: 1;
			column-gap: 0;
			padding: 0 15px;
		}

		.faq-header h1 p {
			font-size: 20px;
		}

		.category-title {
			font-size: 16px;
		}

		.faq-question {
			padding: 10px 12px;
		}

		.faq-question-text {
			font-size: 13px;
		}

		.faq-answer p {
			font-size: 12px;
		}
	}