/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--primary: #0066CC;
	--primary-dark: #0f2057;
	--secondary: #00B8A9;
	--cta: #FF8A34;
	--bg: #F5F7FB;
	--white: #ffffff;
	--text: #1a1a2e;
	--text-muted: #64748b;
	--border: #e2e8f0;
	--shadow-sm: 0 4px 16px rgba(0,102,204,0.08);
	--shadow-md: 0 12px 36px rgba(0,102,204,0.12);
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Cairo', sans-serif;
	background-color: var(--bg);
	color: var(--text);
	line-height: 1.7;
}

/* ═══════════════════════════════════════
	SHARED NAVBAR — 3-column grid layout
	Logo | Center Links | CTA + Hamburger
═══════════════════════════════════════ */
#shared-header nav {
	position: fixed;
	top: 0; right: 0; left: 0;
	z-index: 200;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
	padding: 0 2rem;
	height: 72px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* ── Logo ── */
.nav-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	letter-spacing: -0.02em;
	flex-shrink: 0;
}
.nav-logo span {
	color: var(--secondary);
}
.nav-logo-image-link {
	padding-block: 0.15rem;
}
.site-logo-container {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}
.site-logo-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: var(--logo-max-height, 50px);
}
.site-logo-container-header,
.site-logo-container-offcanvas {
	--logo-max-height: 64px;
}

/* ── Center column: nav links ── */
.nav-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
}

.nav-links a {
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: color 0.2s;
	position: relative;
	white-space: nowrap;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px; right: 0; left: 0;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform 0.2s;
	transform-origin: right;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ── Right column: CTA + hamburger ── */
.nav-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.nav-cta {
	background: var(--cta) !important;
	color: var(--white) !important;
	padding: 0.5rem 1.25rem !important;
	border-radius: 9999px !important;
	font-weight: 700 !important;
	font-size: 0.875rem !important;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s, transform 0.2s !important;
	display: inline-block;
}
.nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ── Hamburger button (mobile only) ── */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px; height: 40px;
	background: none; border: none; cursor: pointer;
	padding: 4px; border-radius: 8px;
	transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(0,102,204,0.08); }
.hamburger-btn span {
	display: block;
	width: 22px; height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════
	MOBILE SIDEBAR OVERLAY + PANEL
═══════════════════════════════════════ */
.nav-overlay {
	display: none;
	position: fixed; inset: 0;
	background: rgba(15,32,87,0.55);
	z-index: 300;
	opacity: 0;
	transition: opacity 0.3s;
}
.nav-overlay.open { opacity: 1; }

.nav-sidebar {
	position: fixed;
	top: 0; right: 0;
	width: min(320px, 82vw);
	height: 100%;
	background: var(--white);
	z-index: 400;
	transform: translateX(110%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.nav-sidebar.open { transform: translateX(0); }

.sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--border);
}

.sidebar-close {
	width: 36px; height: 36px;
	border: none; background: var(--bg); border-radius: 50%;
	font-size: 1.3rem; color: var(--text-muted);
	cursor: pointer; display: flex; align-items: center; justify-content: center;
	transition: background 0.2s, color 0.2s;
	line-height: 1;
}
.sidebar-close:hover { background: #fee2e2; color: #dc2626; }

.sidebar-links {
	list-style: none;
	padding: 1.5rem 1rem;
	display: flex; flex-direction: column; gap: 0.25rem;
	flex: 1; overflow-y: auto;
}

.sidebar-links li a {
	display: flex; align-items: center; gap: 0.75rem;
	padding: 0.85rem 1rem;
	border-radius: 0.875rem;
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.2s, color 0.2s;
}
.sidebar-links li a:hover { background: rgba(0,102,204,0.06); color: var(--primary); }
.sidebar-links li a.active { background: rgba(0,102,204,0.08); color: var(--primary); }

.sidebar-cta-wrap {
	padding: 1.25rem 1.5rem;
	border-top: 1px solid var(--border);
}
.sidebar-cta-btn {
	display: block; width: 100%; text-align: center;
	background: var(--cta); color: white;
	text-decoration: none; font-weight: 700; font-size: 1rem;
	padding: 0.85rem 1.5rem; border-radius: 9999px;
	transition: opacity 0.2s;
}
.sidebar-cta-btn:hover { opacity: 0.9; }

/* ═══════════════════════════════════════
	SHARED FOOTER — PROFESSIONAL MULTI-COLUMN
═══════════════════════════════════════ */
#shared-footer footer {
	background: var(--primary-dark);
	color: rgba(255,255,255,0.7);
	font-size: 0.925rem;
}

/* Top section container */
.footer-top {
	padding: 3.5rem 2rem 2.5rem;
}
.footer-container {
	max-width: 1140px;
	margin: 0 auto;
}

/* 4-column grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 2.5rem 3rem;
}

/* Brand column */
.footer-brand {}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: #fff;
	margin-bottom: 0.4rem;
	letter-spacing: -0.02em;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}
.footer-logo span { color: var(--secondary); }
.footer-logo-image-link {
	margin-bottom: 0.9rem;
}
.site-logo-container-footer {
	--logo-max-height: 108px;
}

.footer-tagline {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 0.75rem;
}

.footer-about-text {
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

/* Social icons row */
.footer-social {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.footer-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.75);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social-btn:hover {
	background: var(--secondary);
	color: #fff;
	transform: translateY(-2px);
}
.footer-social-btn svg {
	width: 17px; height: 17px;
	fill: none; stroke: currentColor;
	stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Nav columns */
.footer-col h4 {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.1rem;
	position: relative;
	padding-bottom: 0.6rem;
}
.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0; right: 0;
	width: 28px; height: 2px;
	background: var(--secondary);
	border-radius: 2px;
}
.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.footer-col ul li a {
	color: rgba(255,255,255,0.65);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s, padding-right 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.footer-col ul li a:hover {
	color: var(--secondary);
	padding-right: 4px;
}
.footer-col ul li a::before {
	content: '←';
	font-size: 0.7rem;
	opacity: 0;
	transition: opacity 0.2s;
	color: var(--secondary);
}
.footer-col ul li a:hover::before { opacity: 1; }

/* Contact column */
.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.78);
	font-size: 15px;
	line-height: 1.8;
}
.footer-contact-item svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--secondary);
	display: block;
}
.footer-contact-item a {
	color: rgba(255,255,255,0.78);
	text-decoration: none;
	transition: color 0.2s ease;
	word-break: break-word;
}
.footer-contact-item a:hover { color: var(--secondary); }

/* Divider */
.footer-divider {
	border: none;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin: 0;
}

/* Bottom bar */
.footer-bottom {
	padding: 1rem 2rem;
}
.footer-bottom-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	font-size: 0.825rem;
	color: rgba(255,255,255,0.5);
}
.footer-bottom-inner strong { color: rgba(255,255,255,0.8); }
.footer-legal {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.footer-legal a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-legal a:hover { color: var(--secondary); }
.footer-legal .sep { color: rgba(255,255,255,0.25); }

/* Tablet: 2-column */
@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
/* Mobile: single column at ≤768px */
@media (max-width: 768px) {
	.site-logo-container-header,
	.site-logo-container-offcanvas { --logo-max-height: 56px; }
	.site-logo-container-footer { --logo-max-height: 88px; }
	.footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
	.footer-top { padding: 2.5rem 1.25rem 2rem; }
	.footer-bottom { padding: 0.85rem 1.25rem; }
	.footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ═══════════════════════════════════════
	SHARED UTILITIES
═══════════════════════════════════════ */
.download-bg {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
	padding: 6rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.download-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.07) 1px, transparent 0);
	background-size: 40px 40px;
}
.download-inner {
	max-width: 680px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.dl-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1.5rem;
	opacity: 0.82;
}
.dl-icon svg {
	width: 64px;
	height: 64px;
	stroke: white;
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.download-inner h2 {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 900;
	color: white;
	margin-bottom: 1rem;
	line-height: 1.2;
}
.download-inner > p {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.82);
	margin-bottom: 2.5rem;
	line-height: 1.75;
}
.store-btns {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.store-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #0f172a;
	color: white;
	padding: 0.9rem 1.75rem;
	border-radius: 0.875rem;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	transition: background 0.2s, transform 0.2s;
}
.store-btn:hover {
	background: #000;
	transform: translateY(-2px);
}
.store-btn svg {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}
.store-btn-text {
	text-align: right;
	line-height: 1.25;
}
.store-btn-text .small {
	font-size: 0.75rem;
	color: #94a3b8;
	display: block;
}
.store-btn-text .big {
	font-size: 1.05rem;
	font-weight: 800;
	display: block;
}

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

.section-tag {
	display: inline-block;
	background: rgba(0,102,204,0.08); color: var(--primary);
	font-size: 0.8rem; font-weight: 700;
	padding: 0.35rem 1rem; border-radius: 9999px;
	margin-bottom: 0.75rem; letter-spacing: 0.04em;
}

.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900;
	color: var(--text); margin-bottom: 0.5rem;
}
.section-title span { color: var(--primary); }

.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

.divider {
	width: 56px; height: 4px;
	background: linear-gradient(to left, var(--primary), var(--secondary));
	border-radius: 9999px; margin: 0.75rem 0 2rem;
}

.btn-primary {
	display: inline-block; background: var(--cta); color: white;
	text-decoration: none; font-size: 1rem; font-weight: 700;
	padding: 0.85rem 2.5rem; border-radius: 9999px;
	transition: opacity 0.2s, transform 0.2s;
	font-family: 'Cairo', sans-serif; border: none; cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.text-center { text-align: center; }

.androcare360-policy-document {
	margin: 2rem auto 0;
	padding: 0 1rem;
}

.androcare360-policy-document__inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 2rem;
	border: 1px solid rgba(0, 102, 204, 0.12);
	border-radius: 1.5rem;
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 184, 169, 0.08));
	box-shadow: var(--shadow-sm);
}

.androcare360-policy-document__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.9rem;
	border-radius: 9999px;
	background: rgba(0, 102, 204, 0.1);
	color: var(--primary-dark);
	font-size: 0.85rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.androcare360-policy-document__title {
	color: var(--primary-dark);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	margin-bottom: 0.75rem;
}

.androcare360-policy-document__text {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.9;
	margin-bottom: 1.25rem;
}

.androcare360-policy-document__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.6rem;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	font-weight: 800;
	transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

.androcare360-policy-document__button:hover,
.androcare360-policy-document__button:focus-visible {
	background: var(--primary-dark);
	color: var(--white);
	opacity: 0.95;
	transform: translateY(-1px);
}

.androcare360-privacy-page {
	padding-bottom: 3rem;
}

.androcare360-privacy-hero {
	position: relative;
	overflow: hidden;
	padding: 5rem 1rem 4rem;
	background: linear-gradient(135deg, #0f2057 0%, #1559b7 55%, #00b8a9 100%);
}

.androcare360-privacy-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
	radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
	radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1), transparent 24%);
}

.androcare360-privacy-hero__content {
	position: relative;
	z-index: 1;
	max-width: 960px;
	color: var(--white);
}

.androcare360-privacy-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.12);
	font-size: 0.85rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.androcare360-privacy-hero h1 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 1rem;
	color: var(--white);
}

.androcare360-privacy-hero p {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.05rem;
	line-height: 1.95;
}

.androcare360-privacy-meta,
.androcare360-privacy-toc,
.androcare360-privacy-section {
	padding: 2rem 1rem 0;
}

.androcare360-privacy-meta__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.androcare360-privacy-card,
.androcare360-privacy-intro,
.androcare360-privacy-toc__grid > div,
.androcare360-privacy-section .container {
	background: var(--white);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.androcare360-privacy-card {
	padding: 1.25rem;
	border-radius: 1.25rem;
}

.androcare360-privacy-card span {
	display: block;
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.androcare360-privacy-card strong {
	color: var(--primary-dark);
	font-size: 1.05rem;
	font-weight: 900;
}

.androcare360-privacy-intro {
	margin-top: 1rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
}

.androcare360-privacy-intro p {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.95;
}

.androcare360-privacy-toc h2,
.androcare360-privacy-section h2 {
	color: var(--primary-dark);
	font-size: clamp(1.35rem, 2.5vw, 1.9rem);
	font-weight: 900;
	margin-bottom: 1rem;
}

.androcare360-privacy-toc__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.androcare360-privacy-toc__grid > div {
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	color: var(--text);
	font-weight: 700;
	line-height: 1.8;
}

.androcare360-privacy-section .container {
	padding: 1.75rem;
	border-radius: 1.5rem;
}

.androcare360-privacy-section p {
	color: var(--text);
	font-size: 1rem;
	line-height: 2;
}

.androcare360-privacy-section p + p {
	margin-top: 1rem;
}

.androcare360-privacy-doc-head {
	text-align: center;
	margin-bottom: 1.5rem;
}

.androcare360-privacy-doc-head p {
	margin: 0.2rem 0;
	line-height: 1.9;
}

.androcare360-privacy-subhead {
	display: grid;
	gap: 0.25rem;
	margin-bottom: 1rem;
	padding: 1rem 1.15rem;
	border-radius: 1rem;
	background: rgba(0, 102, 204, 0.05);
	border: 1px solid rgba(0, 102, 204, 0.12);
}

.androcare360-privacy-subhead p {
	margin: 0;
	color: var(--primary-dark);
	font-weight: 700;
	line-height: 1.8;
}

.androcare360-privacy-section h2 span {
	display: block;
	margin-top: 0.35rem;
	color: var(--text-muted);
	font-size: 0.85em;
	font-weight: 700;
}

.androcare360-privacy-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 1rem;
	margin-top: 1rem;
}

.androcare360-privacy-table th,
.androcare360-privacy-table td {
	padding: 1rem;
	border: 1px solid var(--border);
	vertical-align: top;
	text-align: right;
	color: var(--text);
	line-height: 1.9;
	word-break: break-word;
}

.androcare360-privacy-table thead th {
	background: rgba(0, 102, 204, 0.08);
	color: var(--primary-dark);
	font-weight: 900;
}

.androcare360-privacy-table tbody th {
	width: 28%;
	background: rgba(15, 32, 87, 0.04);
	color: var(--primary-dark);
	font-weight: 800;
}

.androcare360-privacy-table--meta tbody th {
	width: 22%;
}

.androcare360-privacy-table--signatures td,
.androcare360-privacy-table--signatures th {
	text-align: right;
}

.androcare360-privacy-note {
	margin-top: 1rem;
	color: var(--text-muted);
	text-align: center;
	font-size: 0.95rem;
}

.androcare360-privacy-section--accent .container {
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.04), rgba(0, 184, 169, 0.06));
}

.androcare360-privacy-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.25rem;
}

.androcare360-privacy-list__item {
	padding: 1.2rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(0, 102, 204, 0.1);
}

.androcare360-privacy-list__item h3 {
	color: var(--primary-dark);
	font-size: 1.05rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.androcare360-privacy-list__item p {
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.9;
}

/* ═══════════════════════════════════════
	RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
	.nav-center { display: none; }
	.hamburger-btn { display: flex; }
	.nav-overlay { display: block; pointer-events: none; }
	.nav-overlay.open { pointer-events: auto; }
	#shared-header nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
	}
	#shared-header .nav-right {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	}
	.androcare360-privacy-meta__grid,
	.androcare360-privacy-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.androcare360-privacy-table tbody th {
	width: 34%;
	}
}

@media (max-width: 640px) {
	.nav-cta { display: none; }
	.download-bg { padding-left: 1rem; padding-right: 1rem; }
	.androcare360-policy-document {
	padding: 0;
	}
	.androcare360-policy-document__inner {
	padding: 1.5rem 1.25rem;
	border-radius: 1.25rem;
	}
	.androcare360-policy-document__button {
	width: 100%;
	}
	.androcare360-privacy-hero {
	padding: 4rem 1rem 3rem;
	}
	.androcare360-privacy-meta__grid,
	.androcare360-privacy-toc__grid,
	.androcare360-privacy-list {
	grid-template-columns: 1fr;
	}
	.androcare360-privacy-section .container,
	.androcare360-privacy-intro {
	padding: 1.35rem;
	}
	.androcare360-privacy-table,
	.androcare360-privacy-table tbody,
	.androcare360-privacy-table tr,
	.androcare360-privacy-table th,
	.androcare360-privacy-table td {
	display: block;
	width: 100%;
	}
	.androcare360-privacy-table thead {
	display: none;
	}
	.androcare360-privacy-table th,
	.androcare360-privacy-table td {
	border-bottom-width: 0;
	}
	.androcare360-privacy-table tr:not(:last-child) td:last-child {
	border-bottom-width: 1px;
	}
}
