* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	min-height: 100vh;
	background: linear-gradient(180deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.header {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 10;
}

.back-button {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateX(-4px);
}

.container {
	padding: 20px;
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}

.hero-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 40px 32px;
	margin-bottom: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.hero-icon {
	font-size: 60px;
	margin-bottom: 16px;
}

.hero-title {
	font-size: 36px;
	font-weight: 900;
	color: #000000;
	margin-bottom: 12px;
}

.hero-subtitle {
	font-size: 16px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 20px;
}

.company-info {
	background: linear-gradient(135deg, #10b981, #059669);
	padding: 16px 24px;
	border-radius: 16px;
	display: inline-block;
	color: #ffffff;
	font-weight: 700;
	margin-top: 12px;
}

.effective-date {
	font-size: 14px;
	color: #9ca3af;
	margin-top: 16px;
	font-weight: 600;
}

.commission-highlight {
	background: linear-gradient(135deg, #ffd700, #f59e0b);
	border-radius: 24px;
	padding: 32px;
	margin-bottom: 24px;
	box-shadow: 0 20px 60px rgba(251, 191, 36, 0.4);
	text-align: center;
}

.commission-title {
	font-size: 24px;
	font-weight: 900;
	color: #000000;
	margin-bottom: 20px;
}

.commission-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.tier {
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 16px;
	border: 2px solid rgba(0, 0, 0, 0.1);
}

.tier-period {
	font-size: 12px;
	color: #6b7280;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.tier-rate {
	font-size: 36px;
	font-weight: 900;
	color: #f59e0b;
	margin-bottom: 4px;
}

.tier-label {
	font-size: 13px;
	color: #374151;
	font-weight: 600;
}

.content-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 24px;
	padding: 32px 28px;
	margin-bottom: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.section-title {
	font-size: 24px;
	font-weight: 900;
	color: #000000;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	color: #ffffff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 900;
	flex-shrink: 0;
}

.section-content {
	color: #374151;
	line-height: 1.8;
	font-size: 15px;
}

.section-content p {
	margin-bottom: 16px;
}

.section-content p:last-child {
	margin-bottom: 0;
}

.subsection {
	margin-top: 20px;
}

.subsection-title {
	font-weight: 800;
	color: #000000;
	margin-bottom: 12px;
	font-size: 18px;
}

.terms-list {
	list-style: none;
	padding: 0;
	margin-top: 12px;
}

.terms-list li {
	padding: 12px 16px;
	margin-bottom: 8px;
	background: rgba(139, 92, 246, 0.05);
	border-radius: 8px;
	border-left: 3px solid #8b5cf6;
	line-height: 1.6;
}

.terms-list li strong {
	color: #000000;
	font-weight: 800;
}

.highlight-box {
	background: rgba(251, 191, 36, 0.1);
	border: 2px solid #fbbf24;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
}

.highlight-title {
	font-weight: 800;
	color: #92400e;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.highlight-text {
	color: #78350f;
	line-height: 1.6;
	font-size: 14px;
}

.important-notice {
	background: rgba(16, 185, 129, 0.1);
	border: 2px solid #10b981;
	border-radius: 12px;
	padding: 16px 20px;
	margin: 16px 0;
}

.important-notice-title {
	font-weight: 800;
	color: #065f46;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.important-notice-text {
	color: #047857;
	line-height: 1.6;
	font-size: 14px;
}

.cta-card {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	border-radius: 24px;
	padding: 40px 32px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
	color: #ffffff;
}

.cta-title {
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 16px;
}

.cta-text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
	opacity: 0.9;
}

.cta-button {
	background: #ffd700;
	color: #000000;
	padding: 16px 48px;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
	background: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
}

.contact-info {
	background: rgba(255, 255, 255, 0.1);
	padding: 16px 24px;
	border-radius: 12px;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
}

.contact-item a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
}

.contact-item a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.commission-tiers {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero-card {
		padding: 32px 24px;
	}

	.content-card {
		padding: 24px 20px;
	}

	.hero-title {
		font-size: 28px;
	}

	.section-title {
		font-size: 20px;
	}
}