/* =========================================
   K2MT INFORMATION PAGE STANDARD
   ASCII SAFE VERSION
========================================= */

.k2t-page-wrapper,
.k2t-page-wrapper * {
  font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
}

.k2t-page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* HERO CARD - SAME STYLE FAMILY AS CONTENT CARDS */
.k2t-page-hero {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #e7dce4;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  text-align: left;
}

.k2t-page-hero h1 {
  color: #80336b;
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 14px 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
}

.k2t-page-hero p {
  margin: 0;
  color: #333333;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
}

/* CONTENT CARD */
.k2t-page-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-top: 20px;
  border: 1px solid #e7dce4;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  text-align: left;
}

.k2t-page-section h2 {
  color: #80336b;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: left;
}

.k2t-page-section p {
  color: #333333;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 14px 0;
  text-align: left;
}

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

.k2t-page-section ul {
  padding-left: 22px;
  color: #333333;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.k2t-page-section li {
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .k2t-page-wrapper {
    padding: 28px 14px 46px;
  }

  .k2t-page-hero,
  .k2t-page-section {
    padding: 24px 20px;
  }

  .k2t-page-hero h1 {
    font-size: 1.8rem;
  }

  .k2t-page-hero p,
  .k2t-page-section p,
  .k2t-page-section ul {
    font-size: 1rem;
  }

  .k2t-page-section h2 {
    font-size: 1.3rem;
  }
}