	/* Page Title Section */
	.page-title {
		width: 100%;
		background: linear-gradient(90deg,#004aad 0%,#55aff8 50%,#004aad 100%);
		color: #fff;
		padding: 100px 20px 50px;
		text-align: center;
	}
	.page-title-inner h1 {
		margin-bottom: 10px;
		font-weight: 700;
		letter-spacing: 1px;
		text-shadow: 0 4px 12px rgba(0,0,0,0.6);
	}
	.page-title-inner p {
		font-weight: 300;
		max-width: 700px;
		margin: 0 auto;
	}

	/* Container Layout */
	.container {
		max-width: 1200px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin: 70px auto;
		padding: 0 20px;
		gap: 40px;
	}
	.container-left,
	.container-right {
		flex: 1;
		min-width: 300px;
	}

	/* Images */
	.container img {
		width: 100%;
		height: auto;
		max-width: 500px;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	}

	/* For the 2-image section */
	.container-left.images,
	.container-right.images {
		display: flex;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}
	.container-left.images img,
	.container-right.images img {
		max-width: 260px;
	}

	/* Headings + Text */
	.container h3 {
		color: #004aad;
		margin-bottom: 10px;
		font-weight: 700;
	}
	.container h4 {
		color: #0078d7;
		margin-bottom: 2px;
		font-weight: 500;
	}
	.container h6{
		color: rgb(168, 152, 255);
		margin-top: 0;
		margin-bottom: 8px;
		font-weight: 400;
	}
	.container ul {
		list-style: none;
		padding: 0;
	}
	.container ul li {
		position: relative;
		padding-left: 25px;
		margin-bottom: 12px;
		color: #333;
	}
	.container ul li::before {
		content: "✔";
		position: absolute;
		left: 0;
		top: 0;
		color: #0078d7;
		font-weight: bold;
	}
