@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700&family=Secular+One&display=swap');

:root {
	--privacy-bg: #f4f0eb;
	--privacy-card: #fffdf8;
	--privacy-side: #0f1f2f;
	--privacy-accent: #ff7d5c;
	--privacy-accent-soft: #ffe4d9;
	--privacy-text: #1d1b26;
	--privacy-muted: #6f6b7a;
	--privacy-border: rgba(15, 31, 47, 0.08);
}

body {
	background: var(--privacy-bg);
	overflow-x: hidden;
}

.privacy-body {
	margin: 0;
	font-family: 'Assistant', 'Heebo', sans-serif;
	color: var(--privacy-text);
	min-height: 100vh;
	overflow: visible;
}

.nav-social a {
	color: #121212;
	border-color: #121212;
}

.nav-links a {
    color: #121212;
}

.privacy-page {
	position: relative;
	overflow: hidden;
	padding: 6rem 0 4rem;
	padding-bottom: 0;
}

.privacy-page::before,
.privacy-page::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 125, 92, 0.25), transparent 65%);
	filter: blur(20px);
	z-index: 0;
}

.privacy-page::before {
	top: -60px;
	inset-inline-start: -40px;
}

.privacy-page::after {
	bottom: -80px;
	inset-inline-end: -100px;
	background: radial-gradient(circle at 70% 70%, rgba(15, 31, 47, 0.2), transparent 70%);
}


.privacy-preamble {
	background: linear-gradient(135deg, #182642, #243b60);
	border-radius: 28px;
	padding: clamp(2rem, 3.5vw, 3rem);
	color: #ffffff;
	box-shadow: 0 20px 60px rgba(14, 18, 58, 0.35);
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
}

.privacy-preamble::after {
	content: '';
	position: absolute;
	inset: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 22px;
	pointer-events: none;
}

.privacy-preamble-meta {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.privacy-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 0.35rem 1rem;
}

.privacy-tagline {
	margin: 0.5rem 0 0;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
}

.privacy-preamble h1 {
	font-family: 'Secular One', 'Assistant', sans-serif;
	font-size: clamp(2.4rem, 3.5vw, 3.2rem);
	margin: 1.25rem 0 1rem;
}

.privacy-lede {
	font-size: 1.05rem;
	max-width: 65ch;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin: 0 0 1.2rem;
}

.privacy-meta {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	font-weight: 600;
}

.privacy-home-link {
	color: var(--privacy-accent);
	text-decoration: none;
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.45rem 1rem;
	border-radius: 999px;
	transition: background 0.2s ease;
}

.privacy-home-link:hover,
.privacy-home-link:focus-visible {
	background: rgba(255, 255, 255, 0.3);
}

.privacy-content {
	position: relative;
	z-index: 1;
	max-width: min(1240px, 92vw);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 1.75rem;
    margin-top: 50px;
	padding: 60px;
}

.privacy-card {
	background: var(--privacy-card);
	border-radius: 28px;
	padding: clamp(1.5rem, 3vw, 2.75rem);
	box-shadow: 0 16px 45px rgba(15, 31, 47, 0.1);
	border: 1px solid var(--privacy-border);
}

.privacy-section + .privacy-section {
	margin-top: 2.25rem;
}

.privacy-section h2 {
	font-family: 'Secular One', 'Assistant', sans-serif;
	margin: 0 0 0.85rem;
	color: var(--privacy-side);
	font-size: 1.45rem;
}

.privacy-section p {
	line-height: 1.8;
	margin: 0 0 0.85rem;
	font-size: 1.05rem;
	color: var(--privacy-text);
}

.privacy-number {
	font-weight: 700;
	color: var(--privacy-accent);
	margin-inline-end: 0.35rem;
}

.privacy-section ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.privacy-section ul li {
	position: relative;
	padding-inline-start: 1.5rem;
	margin-bottom: 0.65rem;
	color: var(--privacy-text);
}

.privacy-section ul li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 0.6em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--privacy-accent);
}

.privacy-section a {
	color: var(--privacy-side);
	text-decoration: underline;
	font-weight: 600;
}

.privacy-note {
	background: var(--privacy-accent-soft);
	border-radius: 18px;
	padding: 1.5rem;
}

.privacy-side-card {
	background: var(--privacy-side);
	color: #f7f7f7;
	border-radius: 28px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	box-shadow: 0 20px 50px rgba(15, 31, 47, 0.35);
    height: 400px;
}

.privacy-side-card h3 {
	font-family: 'Secular One', 'Assistant', sans-serif;
	margin: 0;
	font-size: 1.4rem;
}

.privacy-side-card p {
	margin: 0;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

.privacy-contact-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.privacy-contact-details a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.02em;
	position: relative;
	padding-inline-start: 1.2rem;
}

.privacy-contact-details a::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	background: var(--privacy-accent);
	border-radius: 50%;
	transform: translateY(-50%);
}

.privacy-small {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.contact-section {
    background-image: none;
    border-bottom: 1px solid #e6e6e6;
}

@media (max-width: 900px) {
	.privacy-content {
		grid-template-columns: 1fr;
	}

	.privacy-side-card {
		order: -1;
	}
}

@media (max-width: 768px) {
	.privacy-page {
		padding: 0 !important;
		overflow: hidden;
		margin: 0;
		min-width: 100vw !important;
	}
}

@media (max-width: 600px) {
	.privacy-preamble {
		padding: 1.75rem;
		border-radius: 24px;
	}

	.privacy-card {
		padding: 1.35rem;
	}

	.privacy-section h2 {
		font-size: 1.3rem;
	}
}
