/* Module: main (reserved for module-specific styles) */

/* ── Info Sections ──────────────────────────────────────────────────── */
.info-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-section h2 {
  color: var(--green);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
}

.info-section p {
  line-height: 1.8;
  color: var(--text);
  font-size: 1rem;
}

/* ── How To Section ───────────────────────────────────────────────────── */
.howto-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.howto-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color .2s;
}

.howto-steps li:hover {
  border-color: var(--green);
}

.howto-steps .step-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  color: var(--bg);
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.howto-steps li p {
  margin: 0;
  padding-top: .4rem;
}

/* ── Mission & Why Sections ──────────────────────────────────────────── */
.mission-text,
.why-text {
  color: var(--text);
  line-height: 1.85;
  font-size: 1.05rem;
}

.mission-section {
  border-left: 4px solid var(--green);
}

.why-section {
  border-left: 4px solid var(--amber);
}

.why-section h2 {
  color: var(--amber);
}

/* ── Responsive adjustments ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .info-section {
    margin: 2rem auto;
    padding: 1.5rem;
  }
  
  .info-section h2 {
    font-size: 1.3rem;
  }
  
  .howto-steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .howto-steps .step-icon {
    margin-bottom: .5rem;
  }
}
