/* Custom CSS for Legal Pages (Privacy Policy & Terms and Conditions) */

.privacy-section {
	padding: 80px 0;
	background-color: #f4f6f8;
	color: #1a2332;
}

.privacy-shell {
	width: min(1220px, calc(100% - 48px));
	margin: 0 auto;
}

/* Main Content Card */
.privacy-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 50px 60px;
	box-shadow: 0 10px 40px rgba(0, 35, 82, 0.04);
	border: 1px solid rgba(0, 35, 82, 0.05);
}

.privacy-intro {
	font-size: 1.15rem;
	line-height: 1.85;
	color: #3b495a;
	margin: 0 0 24px 0;
	text-align: justify;
}

.privacy-divider {
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, #d49930 0%, rgba(212, 153, 48, 0.1) 100%);
	margin: 40px 0;
}

.privacy-content-section {
	margin-bottom: 50px;
}

.privacy-content-section:last-of-type {
	margin-bottom: 0;
}

.privacy-content-section h2 {
	font-size: 1.55rem;
	color: #002352;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
	line-height: 1.3;
}

.section-number {
	font-size: 0.95rem;
	font-weight: 400;
	color: #d49930;
	background: rgba(212, 153, 48, 0.08);
	padding: 4px 10px;
	border-radius: 6px;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
}

.privacy-content-section p {
	font-size: 1.02rem;
	line-height: 1.8;
	color: #4b596a;
	margin: 0 0 20px 0;
	text-align: justify;
}

.privacy-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.privacy-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 1.02rem;
	line-height: 1.6;
	color: #4b596a;
}

.privacy-list .bullet {
	color: #d49930;
	font-size: 0.85rem;
	margin-top: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Callout Box */
.privacy-callout {
	background: rgba(0, 35, 82, 0.02);
	border-left: 4px solid #002352;
	padding: 24px;
	border-radius: 0 16px 16px 0;
	margin: 30px 0;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	box-shadow: 0 4px 15px rgba(0, 35, 82, 0.02);
}

.privacy-callout.warning {
	background: rgba(212, 153, 48, 0.03);
	border-left-color: #d49930;
}

.callout-icon {
	color: #002352;
	font-size: 1.35rem;
	margin-top: 2px;
}

.privacy-callout.warning .callout-icon {
	color: #d49930;
}

.privacy-callout p {
	margin: 0 !important;
	font-size: 0.98rem !important;
	line-height: 1.65 !important;
	color: #3b495a !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.privacy-card {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.privacy-section {
		padding: 50px 0;
	}
	
	.privacy-card {
		padding: 30px 24px;
	}
	
	.privacy-content-section h2 {
		font-size: 1.35rem;
		flex-wrap: wrap;
	}
	
	.privacy-list {
		margin-left: 10px;
	}
}
