.pmg-hero 
{
  background: linear-gradient(135deg, rgba(31, 123, 214, 0.1), rgba(111, 4, 233, 0.05));
  padding: 30px;
  border-radius: var(--radius);
  border-left: 5px solid var(--accent1);
  margin-bottom: 40px;
}

.content-block 
{
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border: 1px solid rgba(0,0,0,0.05);
}

.content-block h2
 {
  color: var(--accent1);
  border-bottom: 2px solid rgba(111, 4, 233, 0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.content-block h3 
{
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.check-list 
{
  list-style: none;
  padding: 0;
}
.check-list li 
{
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #444;
  line-height: 1.5;
}
.check-list li::before 
{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent1);
  font-weight: bold;
  font-size: 1.1em;
}

.sub-list 
{
  list-style: disc;
  padding-left: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.95rem;
}
.sub-list li
{
  margin-bottom: 5px;
}

.grid-2-col 
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.step-box 
{
  background: #f9f9ff;
  border: 1px solid rgba(111, 4, 233, 0.1);
  padding: 20px;
  border-radius: 10px;
}
.step-box strong 
{ 
  color: var(--accent1); 
}

.info-note {
  background: #eefcfd;
  border: 1px solid #00ffff;
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 20px;
}

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