:root {
	--totoland-blue: #00AEEF;
	--totoland-pink: #FF5AA5;
	--totoland-green: #58C63A;
	--totoland-yellow: #FFC83D;
	--totoland-dark: #111827;
	--totoland-muted: #667085;
	--totoland-bg: #F8FAFC;
	--totoland-white: #FFFFFF;
	--totoland-border: #E5E7EB;
	--totoland-radius: 18px;
	--totoland-shadow: 0 12px 30px rgba(17, 24, 39, .07);
}

.totoland-privacy-page {
	background: var(--totoland-bg);
	color: var(--totoland-dark);
}

.totoland-privacy-container {
	width: min(100% - 32px, 1240px);
	margin-inline: auto;
}

.totoland-privacy-hero {
	padding: 72px 0;
	background: linear-gradient(135deg, rgba(0, 174, 239, .14), rgba(255, 90, 165, .11));
}

.totoland-privacy-hero-inner {
	display: flex;
	align-items: center;
	gap: 46px;
}

.totoland-privacy-hero-content,
.totoland-privacy-hero-media {
	flex: 1 1 50%;
	min-width: 0;
}

.totoland-privacy-hero h1 {
	margin: 14px 0 18px;
	font-size: clamp(40px, 6vw, 68px);
	line-height: 1.03;
	font-weight: 900;
}

.totoland-privacy-hero p,
.totoland-privacy-section-heading p {
	color: var(--totoland-muted);
	font-size: 15px;
	line-height: 1.75;
}

.totoland-privacy-eyebrow {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: #EAF8FD;
	color: #007FAF;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.totoland-privacy-section {
	margin: 28px 0;
	padding: 34px;
	border: 1px solid var(--totoland-border);
	border-radius: 24px;
	background: var(--totoland-white);
	box-shadow: var(--totoland-shadow);
}

.totoland-privacy-section-heading {
	max-width: 820px;
	margin-bottom: 26px;
}

.totoland-privacy-section-heading h2,
.totoland-privacy-cta h2 {
	margin: 12px 0;
	font-size: clamp(28px, 4.5vw, 44px);
	line-height: 1.12;
	font-weight: 900;
}

.totoland-privacy-card-grid,
.totoland-privacy-contact-grid,
.totoland-privacy-status-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.totoland-privacy-info-card {
	flex: 1 1 calc(33.333% - 18px);
	min-width: 240px;
	padding: 24px;
	border: 1px solid var(--totoland-border);
	border-radius: var(--totoland-radius);
	background: var(--totoland-white);
}

.totoland-privacy-card-icon {
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: #F2FBFF;
	color: var(--totoland-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.totoland-privacy-info-card h3 {
	margin: 15px 0 7px;
	font-size: 18px;
}

.totoland-privacy-info-card p {
	margin: 0;
	color: var(--totoland-muted);
	font-size: 14px;
	line-height: 1.65;
}

.totoland-privacy-actions {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.totoland-privacy-button {
	min-height: 48px;
	padding: 11px 18px;
	border: 2px solid transparent;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 900;
	text-decoration: none;
}

.totoland-privacy-button--primary {
	background: var(--totoland-blue);
	color: #FFF;
}

.totoland-privacy-button--outline {
	border-color: var(--totoland-blue);
	background: #FFF;
	color: #007FAF;
}

.totoland-privacy-button--whatsapp {
	background: #25D366;
	color: #FFF;
}

.totoland-privacy-notice {
	margin-top: 24px;
	padding: 17px;
	border-left: 4px solid var(--totoland-yellow);
	border-radius: 0 14px 14px 0;
	background: #FFFDF5;
	display: flex;
	gap: 11px;
}

.totoland-privacy-notice p {
	margin: 0;
	color: var(--totoland-muted);
	font-size: 14px;
	line-height: 1.65;
}

.totoland-privacy-media {
	overflow: hidden;
	width: 100%;
	margin: 0;
	border-radius: 22px;
	background: #FFF;
	box-shadow: var(--totoland-shadow);
}

.totoland-privacy-media--16-10 { aspect-ratio: 16 / 10; }
.totoland-privacy-media--16-9 { aspect-ratio: 16 / 9; }
.totoland-privacy-media--4-3 { aspect-ratio: 4 / 3; }
.totoland-privacy-media--1-1 { aspect-ratio: 1 / 1; }

.totoland-privacy-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.totoland-privacy-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 260px;
	padding: 28px;
	border: 2px dashed #CBD5E1;
	background: linear-gradient(135deg, #F2FBFF, #FFF5FA);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.totoland-privacy-image-placeholder i {
	margin-bottom: 14px;
	color: var(--totoland-blue);
	font-size: 36px;
}

.totoland-privacy-image-placeholder strong,
.totoland-privacy-image-placeholder small {
	display: block;
}

.totoland-privacy-image-placeholder p,
.totoland-privacy-image-placeholder small {
	color: var(--totoland-muted);
}

.totoland-privacy-contact-grid > a {
	flex: 1 1 calc(25% - 18px);
	min-width: 220px;
	padding: 22px;
	border: 1px solid var(--totoland-border);
	border-radius: var(--totoland-radius);
	background: #FFF;
	color: var(--totoland-dark);
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.totoland-privacy-contact-grid i {
	color: var(--totoland-blue);
	font-size: 24px;
}

.totoland-privacy-contact-grid strong {
	margin: 12px 0 5px;
}

.totoland-privacy-contact-grid span {
	color: var(--totoland-muted);
	font-size: 13px;
	overflow-wrap: anywhere;
}

.totoland-privacy-related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.totoland-privacy-related-links a {
	padding: 11px 16px;
	border-radius: 999px;
	background: #F2FBFF;
	color: #007FAF;
	font-weight: 800;
	text-decoration: none;
}

.totoland-privacy-status-grid > div {
	flex: 1 1 220px;
	padding: 20px;
	border-radius: 16px;
	background: #F8FAFC;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.totoland-privacy-status-grid span {
	color: var(--totoland-muted);
}

.totoland-privacy-timeline {
	margin: 0;
	padding-left: 24px;
}

.totoland-privacy-timeline li {
	padding: 12px 0;
}

.totoland-privacy-timeline span {
	display: block;
	color: var(--totoland-muted);
}

.totoland-privacy-faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.totoland-privacy-faq-item {
	overflow: hidden;
	border: 1px solid var(--totoland-border);
	border-radius: 16px;
	background: #FFF;
}

.totoland-privacy-faq-item h3 {
	margin: 0;
}

.totoland-privacy-faq-toggle {
	width: 100%;
	min-height: 60px;
	padding: 16px 18px;
	border: 0;
	background: #FFF;
	color: var(--totoland-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.totoland-privacy-faq-toggle i {
	color: var(--totoland-blue);
	transition: transform .2s ease;
}

.totoland-privacy-faq-toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.totoland-privacy-faq-panel {
	padding: 0 18px 18px;
	color: var(--totoland-muted);
	line-height: 1.7;
}

.totoland-privacy-cta {
	background: linear-gradient(135deg, rgba(0, 174, 239, .13), rgba(255, 90, 165, .13));
}

.totoland-privacy-page a:focus-visible,
.totoland-privacy-page button:focus-visible {
	outline: 3px solid var(--totoland-yellow);
	outline-offset: 4px;
}

@media (max-width: 900px) {
	.totoland-privacy-hero-inner {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 767px) {
	.totoland-privacy-container {
		width: min(100% - 24px, 1240px);
	}

	.totoland-privacy-hero {
		padding: 48px 0;
	}

	.totoland-privacy-section {
		padding: 22px;
		border-radius: 20px;
	}

	.totoland-privacy-actions {
		flex-direction: column;
	}

	.totoland-privacy-button {
		width: 100%;
	}

	.totoland-privacy-info-card,
	.totoland-privacy-contact-grid > a {
		flex-basis: 100%;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.totoland-privacy-faq-toggle i {
		transition: none;
	}
}
