/* ======================
   RESET & BASE STYLES
   ====================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	font-family: Arial, sans-serif;
}

.legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 10px;
}

.legal-title {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 1rem;
}

.legal-description {
	color: #666;
	font-size: 1.1rem;
}

.legal-content {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-section {
	margin-bottom: 2rem;
}

.section-title {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #f0f2f5;
}

.section-content {
	color: #666;
	line-height: 1.8;
}

.section-content p {
	margin-bottom: 1rem;
}

.section-content ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.section-content li {
	margin-bottom: 0.5rem;
}

.last-updated {
	text-align: right;
	color: #999;
	font-style: italic;
	margin-top: 2rem;
}