:root {
	--primary: #2196F3;
	--secondary: #FF5722;
	--dark: #212121;
	--light: #FAFAFA;
	--accent: #4CAF50;
}
.privacy {
	background-color: var(--light);
	color: var(--dark);
	line-height: 1.6;
	padding-top: 100px;
	padding-bottom: 100px;
}
.privacy-header {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	padding: 3rem 2rem;
	border-radius: 12px;
	margin-bottom: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}    
.privacy-header::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}        
.privacy-header::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 30%;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}
.privacy-header h1 {
	color: white;
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.privacy-header p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	position: relative;
	z-index: 1;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.privacy-content {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}        
.section {
	margin-bottom: 2.5rem;
	position: relative;
	padding: 0 1rem;
}        
.section:last-child {
	margin-bottom: 0;
}
.section-title {
	font-size: 1.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--accent);
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	display: inline-block;
}
.section-content {
	padding-left: 1rem;
}        
.section-content p {
	margin-bottom: 1rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
}        
.section-content ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}        
.section-content li {
	margin-bottom: 0.5rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.highlight {
	background-color: rgba(76, 175, 80, 0.2);
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-weight: 500;
}        
.contact-info {
	background: linear-gradient(to right, rgba(33, 150, 243, 0.1), rgba(76, 175, 80, 0.1));
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 2rem;
}        
.contact-info p {
	margin-bottom: 0.5rem;
}        
.contact-info strong {
	color: #da251c;
	font-size: 25px;
	font-weight: 500;
}        
.date-updated {
	text-align: right;
	font-style: italic;
	color: #777;
	margin-top: 2rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.decoration {
	position: absolute;
	border-radius: 50%;
	opacity: 0.2;
}        
.decoration-1 {
	top: 20px;
	left: -15px;
	width: 30px;
	height: 30px;
	background: var(--accent);
}        
.decoration-2 {
	bottom: 40px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: var(--primary);
}        
.decoration-3 {
	top: 50%;
	right: -20px;
	width: 40px;
	height: 40px;
	background: var(--secondary);
}        
.privacy-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	vertical-align: middle;
}
.info-box {
	background-color: rgba(33, 150, 243, 0.1);
	border-left: 4px solid var(--primary);
	padding: 1rem;
	margin: 1.5rem 0;
	border-radius: 0 4px 4px 0;
}        
.info-box p:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.privacy-header {
		padding: 2rem 1.5rem;
	}        
	.privacy-header h1 {
		font-size: 2rem;
	}        
	.privacy-content {
		padding: 1.5rem;
	}        
	.section-title {
		font-size: 1.3rem;
	}
	.section {
		padding: 0;
	}
}