/* ========================================
   LEGAL PAGES STYLES
   ======================================== */

/* Breadcrumbs */
.breadcrumbs {
	padding: 20px 0;
	background-color: var(--bg-light);
	border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-list {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumbs-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.breadcrumbs-list a {
	color: var(--text-light);
	transition: var(--transition);
}

.breadcrumbs-list a:hover {
	color: var(--primary-color);
}

.breadcrumbs-list .current {
	color: var(--text-color);
	font-weight: 500;
}

.breadcrumbs-separator {
	color: var(--text-light);
}

/* Legal Page Layout */
.legal-page {
	padding: 60px 0;
	background-color: var(--white);
}

.legal-container {
	max-width: 900px;
	margin: 0 auto;
}

.legal-header {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--border-color);
}

.legal-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 15px;
	line-height: 1.2;
}

.legal-updated {
	color: var(--text-light);
	font-size: 15px;
}

.legal-content {
	color: var(--text-color);
	line-height: 1.8;
}

.legal-content h2 {
	font-size: 28px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.legal-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--text-color);
}

.legal-content p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
	margin-bottom: 25px;
	padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 10px;
}

.legal-content ul {
	list-style: none;
}

.legal-content ul li::before {
	content: '•';
	color: var(--primary-color);
	font-weight: bold;
	font-size: 20px;
	position: absolute;
	left: -20px;
}

.legal-content ol {
	list-style: decimal;
	list-style-position: outside;
}

.legal-content strong {
	font-weight: 600;
	color: var(--text-color);
}

.legal-content a {
	color: var(--primary-color);
	text-decoration: underline;
}

.legal-content a:hover {
	color: var(--primary-hover);
}

/* Info Box */
.info-box {
	background-color: #fff5f5;
	border-left: 4px solid var(--primary-color);
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
}

.info-box p {
	margin-bottom: 0;
}

/* Contact Info in Legal Pages */
.legal-contact {
	margin-top: 50px;
	padding: 30px;
	background-color: var(--bg-light);
	border-radius: 12px;
}

.legal-contact h3 {
	font-size: 24px;
	margin-bottom: 20px;
	margin-top: 0 !important;
}

.legal-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.legal-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.legal-contact-list li::before {
	display: none;
}

.legal-contact-icon {
	width: 20px;
	height: 20px;
	color: var(--primary-color);
	flex-shrink: 0;
	margin-top: 2px;
}

.legal-contact-list a {
	color: var(--text-color);
	text-decoration: none;
}

.legal-contact-list a:hover {
	color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
	.legal-title {
		font-size: 32px;
	}
	
	.legal-content h2 {
		font-size: 24px;
	}
	
	.legal-content h3 {
		font-size: 20px;
	}
	
	.legal-page {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	.legal-title {
		font-size: 26px;
	}
	
	.legal-content h2 {
		font-size: 22px;
	}
	
	.legal-content h3 {
		font-size: 18px;
	}
}