
/* Styles extracted from purchase-steps.html */
body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
    }
    .steps-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px;
    }
    .steps-section h1 {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 50px;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 40px;
    }
    .step-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s;
    }
    .step-card:hover {
      transform: translateY(-5px);
    }
    .step-card img {
      width: 64px;
      height: 64px;
      margin-bottom: 20px;
    }
    .step-card h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
    }
    .step-card p {
      font-size: 1em;
      color: #333;
      line-height: 1.5;
    }
    .back-button {
      display: block;
      width: fit-content;
      margin: 50px auto 0;
      padding: 12px 24px;
      background-color: #2e80ec;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      transition: background-color 0.3s;
    }
    .back-button:hover {
      background-color: #1e60c0;
    }


/* Extracted from about.html */
body {
      font-family: 'Montserrat', sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 0;
    }
    .container {
      max-width: 960px;
      margin: 60px auto;
      background: #fff;
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    h1 {
      text-align: center;
      font-size: 2.8em;
      margin-bottom: 30px;
      color: #222;
    }
    p {
      font-size: 1.2em;
      line-height: 1.8;
      color: #333;
      margin-bottom: 20px;
    }
    .back-button {
      display: block;
      text-align: center;
      margin-top: 40px;
    }
    .back-button a {
      display: inline-block;
      background: #e40000;
      color: #fff;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .back-button a:hover {
      background: #c20000;
    }

/* Extracted from dkp.html */
body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 960px;
    margin: 60px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  h2 {
    font-size: 1.8em;
    margin-top: 0;
    color: #222;
  }
  ul {
    margin: 20px 0;
    padding-left: 20px;
  }
  ul li {
    font-size: 1.1em;
    margin-bottom: 12px;
    color: #333;
  }
  p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
  }

  h2 {
    font-size: 2em;
    margin-top: 30px;
    color: #1a1a1a;
  }
  ul {
    margin: 20px 0;
    padding-left: 22px;
  }
  ul li {
    font-size: 1.15em;
    margin-bottom: 14px;
    color: #222;
    line-height: 1.6;
  }
  p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #222;
    margin-top: 10px;
  }
  .button {
    display: inline-block;
    background: #e40000;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 30px;
  }
  .button:hover {
    background: #c20000;
  }
  .back-button {
    display: block;
    text-align: center;
    margin-top: 50px;
  }

.back-button a {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.back-button a:hover {
  background: #0056b3;
}
