 :root {
      --primary: #4A2B7A;
      --secondary: #6C43B0;
      --white: #FFFFFF;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }
    body {
      background: #F8F5FF;
      color: #333;
      line-height: 1.6;
    }
    header, footer {
      background: var(--primary);
      color: var(--white);
      text-align: center;
      padding: 1.5rem;
    }
    h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 1rem;
    }
     .cta-button {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      margin-top: 1.2rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    p {
      text-align: center;
      font-size: 1.05rem;
    }
    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 2rem;
      background: var(--white);
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 2rem 0;
    }
    .feature {
      padding: 1.5rem;
      background: #EDE7F6;
      border-radius: 10px;
      text-align: center;
    }
    .centered-section {
      text-align: center;
      max-width: 900px;
      margin: 3rem auto;
    }
    .report-img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      margin: 1.5rem 0;
    }
    .btn-download {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: var(--primary);
      color: var(--white);
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .btn-download:hover {
      background: var(--secondary);
    }
    .divider {
      font-size: 1.5rem;
      color: var(--primary);
      margin: 1rem 0;
    }
    .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      padding: 0.8rem 1rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .qr-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-features ul li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-align: center;
}
.qr-image {
  display: block;
  width: 120px;        /* Adjust as needed */
  height: auto;        /* Maintains aspect ratio */
  margin: 0 auto 1.5rem;
  border-radius: 8px;  /* Optional: soft edges */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: nice shadow */
}

