	/* =========================
			   SECTION TITLES
			========================= */
	.section-title {
		text-align: center;
		margin-bottom: 40px;
	}

	.section-title .title {
		font-size: 36px;
		font-weight: 700;
		color: #35403c;
	}

	/* =========================
			   SERVICES CARD
			========================= */
	.services-item-two {
		background: #ffffff;
		border-radius: 16px;
		border: 1px solid rgba(53, 64, 60, 0.2);
		overflow: hidden;
		transition: 0.3s ease;
	}

	.services-item-two:hover {
		transform: translateY(-6px);
		box-shadow: 0 20px 40px rgba(53, 64, 60, 0.2);
	}

	.services-thumb-two img {
		width: 100%;
		height: 260px;
		object-fit: cover;
	}

	.services-content-two {
		display: flex;
		gap: 20px;
		padding: 25px;
		align-items: center;
	}

	.services-content-two .icon img {
		width: 70px;
	}

	.services-content-two .title {
		font-size: 26px;
		font-weight: 700;
		color: #35403c;
	}

	.services-content-two p {
		font-size: 15px;
		margin-bottom: 6px;
	}

	/* =========================
			   ACCORDION
			========================= */
	.faq-wrap {
		padding: 0 20px 20px;
	}

	.accordion-item {
		border: none;
		margin-bottom: 10px;
	}

	.accordion-button {
		background: rgba(53, 64, 60, 0.08);
		color: #35403c;
		font-weight: 600;
		border-radius: 8px !important;
	}

	.accordion-button:not(.collapsed) {
		background: #35403c;
		color: #ffffff;
	}

	.accordion-body {
		border: 1px solid rgba(53, 64, 60, 0.15);
		border-top: none;
		border-radius: 0 0 8px 8px;
		padding: 20px;
	}

	.accordion-body p,
	.accordion-body li {
		font-size: 14.5px;
		line-height: 1.7;
	}

	/* =========================
			   NOTE AREA
			========================= */
	.note-area {
		background: #35403c;
		padding: 40px;
		border-radius: 20px;
		text-align: center;
	}

	.note-area h5 {
		color: #ffffff;
	}

	.btn-pdf {
		background: #ffffff;
		color: #35403c;
		padding: 12px 30px;
		border-radius: 30px;
		font-weight: 600;
		text-decoration: none;
		display: inline-block;
		transition: 0.3s;
	}

	.btn-pdf:hover {
		background: #e6ecea;
	}

	/* =========================
			   FAQ CARD (NEW)
			========================= */
	.faq-section {
		background: #f2f2f2;
		padding: 60px 20px;
	}

	.faq-card {
		background: #ffffff;
		max-width: 1100px;
		margin: auto;
		padding: 50px;
		border-radius: 20px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	}

	.faq-content p {
		font-size: 15px;
		line-height: 1.8;
		color: #333333;
	}

	/* =========================
			   LIST STYLE
			========================= */
	.list-wrap {
		list-style: none;
		padding-left: 0;
		margin-bottom: 20px;
	}

	.list-wrap li {
		display: flex;
		align-items: flex-start;
		font-size: 15px;
		line-height: 1.7;
		margin-bottom: 12px;
		color: #333333;
	}

	.list-wrap li i {
		margin-top: 6px;
		margin-right: 12px;
		font-size: 16px;
		color: #6b6b6b;
	}

	/* =========================
			   UTILITIES
			========================= */
	.fw-bold {
		font-weight: 700;
	}

	.pt-10 {
		padding-top: 10px;
	}

	.pt-30 {
		padding-top: 30px;
	}

	.pt-40 {
		padding-top: 40px;
	}

	.pb-30 {
		padding-bottom: 30px;
	}

	.mt-20 {
		margin-top: 20px;
	}

	.text-black {
		color: #000000;
	}

	.pr-15 {
		padding-right: 15px;
	}

	.mtp-8 {
		margin-top: 8px;
	}

	.w-sm-50 {
		width: 50%;
	}

	/* =========================
			   BRAND LOGOS
			========================= */
	.accordion-body img {
		width: 100%;
		filter: grayscale(100%);
		transition: 0.3s;
		margin-bottom: 15px;
	}

	.accordion-body img:hover {
		filter: grayscale(0%);
	}

	/* =========================
			   RESPONSIVE
			========================= */
	@media (max-width: 768px) {
		.services-content-two {
			flex-direction: column;
			text-align: center;
		}

		.w-sm-50 {
			width: 100%;
		}

		.accordion-body .row .col-lg-3 {
			flex: 0 0 50%;
			max-width: 50%;
		}

		.faq-card {
			padding: 30px 20px;
		}
	}