/* Privacy Policy Page Styles */

:root {
	--primary-color: #FCB42D;
	--secondary-color: #1e1e2e;
	--text-dark: #2c2c2c;
	--text-light: #666;
	--border-color: #e0e0e0;
	--bg-light: #f9f9f9;
	--success-color: #10b981;
	--warning-color: #f59e0b;
}

html, body {
	margin: 0;
	padding: 0;
}

/* Main Article Container */
.uk-article {
	line-height: 1.8;
	color: var(--text-dark);
}

.uk-article-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
	letter-spacing: -0.5px;
}

.uk-text-meta {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 2rem;
}

/* Headings */
.uk-article h2 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--secondary-color);
	margin-top: 2.5rem;
	margin-bottom: 1.2rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
}

.uk-article h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--secondary-color);
	margin-top: 1.8rem;
	margin-bottom: 1rem;
}

/* Paragraphs */
.uk-article p {
	margin-bottom: 1.2rem;
	color: var(--text-dark);
	line-height: 1.85;
}

.uk-article p:last-child {
	margin-bottom: 0;
}

/* Lists */
.uk-article .uk-list-bullet li {
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	color: var(--text-dark);
	line-height: 1.75;
}

.uk-article .uk-list-bullet li:before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: bold;
}

.uk-article .uk-list li {
	margin-bottom: 0.6rem;
	padding-left: 2rem;
	color: var(--text-dark);
	position: relative;
}

.uk-article .uk-list li:before {
	content: "✓";
	position: absolute;
	left: 0.5rem;
	color: var(--success-color);
	font-weight: bold;
	font-size: 1.1rem;
}

/* Dividers */
.uk-divider-icon {
	background: linear-gradient(to right, transparent, var(--primary-color), transparent);
	border: none;
	height: 2px;
	margin: 2.5rem 0;
}

.uk-divider-icon:after {
	content: "";
}

/* Cards */
.uk-card-default {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.uk-card-default:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.uk-card-body {
	padding: 1.8rem;
}

.uk-card-body h3 {
	margin-top: 0;
	margin-bottom: 1.2rem;
	color: var(--secondary-color);
}

.uk-card-body a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.uk-card-body a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* Sidebar */
aside {
	position: sticky;
	top: 2rem;
}

/* Quick Links Card */
.uk-card-body .uk-list-bullet {
	list-style: none;
	padding-left: 0;
}

.uk-card-body .uk-list-bullet li {
	margin-bottom: 0.8rem;
	padding-left: 1.5rem;
	position: relative;
}

.uk-card-body .uk-list-bullet li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/* Privacy Highlights */
.uk-card-body .uk-list {
	list-style: none;
	padding-left: 0;
}

.uk-card-body .uk-list li {
	padding-left: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	line-height: 1.6;
	color: var(--text-dark);
}

.uk-card-body .uk-list li i {
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 1.3rem;
}

/* Contact Information Card */
.uk-card-body p strong {
	color: var(--secondary-color);
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.05rem;
}

.uk-card-body p {
	margin-bottom: 0.8rem;
}

/* Links in Content */
a {
	color: var(--primary-color);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

/* Emphasis */
strong, b {
	color: var(--primary-color);
	font-weight: 600;
}

em, i.fas {
	color: var(--primary-color);
}

/* Margin utilities */
.uk-margin-medium-top {
	margin-top: 1.5rem !important;
}

.uk-margin-small-right {
	margin-right: 0.5rem !important;
}

/* Text utilities */
.uk-text-small {
	font-size: 0.875rem;
}

.uk-text-muted {
	color: var(--text-light);
}

/* Section styling */
body {
	background: transparent;
}

.uk-section-default {
	background: transparent;
	padding: 4rem 0;
	margin: 0;
}

.uk-section {
	padding: 2rem 0;
	margin: 0;
}

.uk-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Grid Layout */
.uk-grid {
	display: grid;
	gap: 2rem;
	margin: 0;
}

.uk-grid-divider > :not(:last-child) {
	padding-right: 2rem;
	border-right: 1px solid var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 960px) {
	.uk-article-title {
		font-size: 2.2rem;
	}

	.uk-article h2 {
		font-size: 1.5rem;
		margin-top: 2rem;
	}

	.uk-article h3 {
		font-size: 1.15rem;
	}

	aside {
		position: relative;
		top: 0;
	}

	.uk-grid-divider > :not(:last-child) {
		padding-right: 0;
		border-right: none;
		padding-bottom: 2rem;
		border-bottom: 1px solid var(--border-color);
	}
}

@media (max-width: 640px) {
	.uk-section {
		padding: 1.5rem 0;
	}

	.uk-article-title {
		font-size: 1.8rem;
	}

	.uk-article h2 {
		font-size: 1.3rem;
		margin-top: 1.5rem;
		margin-bottom: 0.8rem;
	}

	.uk-article h3 {
		font-size: 1.05rem;
		margin-top: 1.2rem;
	}

	.uk-article p {
		margin-bottom: 1rem;
	}

	.uk-card-body {
		padding: 1.2rem;
	}

	.uk-container {
		padding: 0 0.75rem;
	}
}

/* Print Styles */
@media print {
	body {
		background: white;
	}

	.uk-section-default {
		padding: 0;
	}

	aside {
		display: none;
	}

	.uk-divider-icon {
		page-break-after: avoid;
	}

	.uk-article h2 {
		page-break-after: avoid;
		page-break-before: avoid;
	}

	.uk-article h3 {
		page-break-after: avoid;
	}

	.uk-article .uk-list-bullet {
		page-break-inside: avoid;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.uk-card-default {
	animation: fadeIn 0.4s ease-out;
}

.uk-article h2 {
	animation: fadeIn 0.5s ease-out;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
	:root {
		--text-dark: #e0e0e0;
		--text-light: #999;
		--bg-light: #2c2c2c;
		--border-color: #404040;
	}

	.uk-section-default {
		background: #1a1a1a;
	}

	.uk-card-default {
		background: #252525;
		border-color: var(--border-color);
	}

	.uk-article,
	.uk-article p {
		color: var(--text-dark);
	}

	.uk-article h2,
	.uk-article h3,
	.uk-card-body h3 {
		color: #fff;
	}
}
