/* ======================== Legal Pages Styles ======================== */

/* Legal Section */
.em-legal-section {
	background: #ffffff;
	position: relative;
	overflow: hidden;
	min-height: 800px;
}

/* Container */
.em-legal-container {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
	padding: 50px;
}

/* Legal Content */
.em-legal-content {
	background: white;
	border-radius: 20px;
	padding: 50px;
	border: 1px solid #e0e0e0;
}

/* Section Blocks */
.em-legal-section-block {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #f0f0f0;
}

.em-legal-section-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Section Titles */
.em-section-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	letter-spacing: 1px;
	padding: 15px 0;
	border-left: 4px solid #1e2f4d;
	padding-left: 15px;
}

.em-subsection-title {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-top: 20px;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

/* Paragraphs */
.em-legal-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 16px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.em-legal-content p:last-child {
	margin-bottom: 0;
}

/* Lists */
.em-legal-list {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.em-legal-list li {
	padding: 12px 0 12px 35px;
	position: relative;
	color: #666;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: 1px;
}

.em-legal-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #1e2f4d;
	font-weight: 800;
	font-size: 18px;
}

/* Contact Info */
.em-contact-info {
	background: #f9f9f9;
	border-left: 4px solid #1e2f4d;
	padding: 25px;
	border-radius: 10px;
	margin-top: 20px;
}

.em-contact-info p {
	margin-bottom: 12px;
	font-size: 16px;
	color: #333;
	font-weight: 400;
}

.em-contact-info p:last-child {
	margin-bottom: 0;
}

.em-contact-info a {
	color: #1e2f4d;
	text-decoration: none;
	font-weight: 600;
}

.em-contact-info a:hover {
	color: #764ba2;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.em-legal-content {
		padding: 35px 25px;
	}

	.em-section-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.em-subsection-title {
		font-size: 16px;
	}

	.em-legal-content p {
		font-size: 15px;
		line-height: 1.7;
	}

	.em-legal-list li {
		padding: 10px 0 10px 30px;
		font-size: 14px;
	}

	.em-contact-info {
		padding: 20px;
	}
}

@media (max-width: 576px) {
	.em-legal-section {
		padding: 60px 0;
		min-height: auto;
	}

	.em-legal-content {
		padding: 25px 18px;
		border-radius: 15px;
		margin: 0 10px;
	}

	.em-legal-section-block {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.em-section-title {
		font-size: 18px;
		margin-bottom: 12px;
		padding: 12px 0;
		padding-left: 12px;
	}

	.em-subsection-title {
		font-size: 15px;
		margin-top: 15px;
		margin-bottom: 12px;
	}

	.em-legal-content p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 14px;
	}

	.em-legal-list li {
		padding: 8px 0 8px 28px;
		font-size: 13px;
		line-height: 1.6;
	}

	.em-legal-list li::before {
		font-size: 16px;
	}

	.em-contact-info {
		padding: 16px;
		margin-top: 15px;
	}

	.em-contact-info p {
		margin-bottom: 8px;
		font-size: 13px;
	}
}