/* Formal Report Styles for Blackmailing Documentation */
body { 
	margin: 0; 
	font-family: 'Segoe UI', 'Calibri', 'Arial', sans-serif; 
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	line-height: 1.7;
	color: #2c3e50;
}

.container {
	max-width: 900px;
	margin: 40px auto;
	padding: 40px 30px;
	background-color: #ffffff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	border-radius: 12px;
}

h1 {
	text-align: center;
	font-size: 2.2em;
	font-weight: bold;
	margin-bottom: 15px;
	color: #1a1a1a;
	border-bottom: 3px solid #c0392b;
	padding-bottom: 15px;
}

.subtitle {
	text-align: center;
	font-size: 1.1em;
	color: #555;
	margin-bottom: 30px;
	font-style: italic;
}

h2 {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 18px;
	color: #2c3e50;
	margin-top: 25px;
}

h3 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 12px;
	color: #c0392b;
	border-left: 4px solid #c0392b;
	padding-left: 12px;
}

.box {
	border: 1px solid #ddd;
	padding: 20px;
	margin: 20px 0;
	border-radius: 8px;
	background-color: #fafafa;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Special section styles */
.complainant-info,
.accused-info {
	background-color: #e8f4f8;
	border-left: 5px solid #3498db;
}

.intro-section {
	background-color: #fff9e6;
	border-left: 5px solid #f39c12;
	font-size: 1.05em;
	font-style: italic;
}

.violation-section {
	background-color: #ffe6e6;
	border-left: 5px solid #c0392b;
}

.evidence-section {
	background-color: #e8f8f5;
	border-left: 5px solid #27ae60;
}

.important-section {
	background-color: #fff3e0;
	border-left: 5px solid #e67e22;
}

.conclusion-section {
	background-color: #f4ecf7;
	border-left: 5px solid #8e44ad;
	font-weight: 500;
}

.message-section {
	background-color: #e1f5fe;
	border-left: 5px solid #2980b9;
}

/* List styles */
ul {
	margin: 12px 0;
	padding-left: 25px;
}

li {
	margin: 8px 0;
	line-height: 1.6;
}

p {
	margin: 12px 0;
	text-align: justify;
}

strong {
	color: #c0392b;
	font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
	.container {
		margin: 20px;
		padding: 20px 15px;
	}
	
	h1 {
		font-size: 1.8em;
	}
	
	h3 {
		font-size: 1.1em;
	}
	
	.box {
		padding: 15px;
	}
}
