.cgu {
	counter-reset: part_counter;
}

.cgu h2 {
	counter-reset: subpart_counter;
}

.cgu h2:before {
	content: counter(part_counter) ". ";
	counter-increment: part_counter;
}

.cgu h3:before {
	content: counter(part_counter) "." counter(subpart_counter) ". ";
	counter-increment: subpart_counter;
}

@media screen and (max-width: 650px) {
	.cgu p{
		text-align: left;
	}
}
