      body {
      background: #f6f8ff;
      color: #333;
      margin: 0;
      padding: 0;
    }

    /* Main wrapper */
    .consent-wrapper {
      max-width: 900px;
      margin: 60px auto;
      background: #fff;
      border-radius: 18px;
      padding: 40px 50px;
      box-shadow: 0 8px 15px rgba(159, 112, 253, 0.12);
      border: 1px solid rgba(159, 112, 253, 0.1);
      
    }

 .consent-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #9F70FD;
      text-align: center;  
 
  margin-bottom: 20px;
}





    .consent-subtitle {
      text-align: center;
      color: #666;
      font-size: 1rem;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .consent-section {
      margin-bottom: 30px;
    }

    .consent-section h3 {
      color: #9F70FD;
      font-size: 1.3rem;
      border-left: 4px solid #9f70fd;
      padding-left: 12px;
      margin-bottom: 15px;
    }

    .consent-section p {
      line-height: 1.7;
      color: #444;
      margin-bottom: 12px;
    }

    ul {
      margin: 10px 0 15px 25px;
      color: #444;
      line-height: 1.6;
    }

    li {
      margin-bottom: 8px;
    }

    /* Contact box */
    .contact-box {
      background: linear-gradient(135deg, #9F70FD, #b96fff);
      color: #fff; /* White text */
      padding: 30px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .contact-box h4 {
      margin-top: 0;
      color: #fff; /* White heading */
    }

    .contact-box ul {
      list-style: none;
      margin: 15px 0 0;
      padding: 0;
    }

    .contact-box li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      font-size: 1.15rem;
      color: #fff; /* White text */
    }

    .contact-box i {
      margin-right: 10px;
      font-size: 1.25rem;
      width: 24px;
      color: #fff; /* White icons */
    }

    .back-btn {
      display: block;
      width: fit-content;
      margin: 40px auto 0;
      background: linear-gradient(135deg, #9F70FD, #b96fff);
      color: #fff;
      padding: 12px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(159, 112, 253, 0.25);
      transition: all 0.3s ease;
    }

    .back-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(159, 112, 253, 0.35);
    }

    .last-updated {
      text-align: right;
      font-size: 0.9rem;
      color: #777;
      margin-top: 20px;
    }

    /* @media (max-width: 768px) {
      .consent-wrapper {
        padding: 25px 20px;
        margin: 20px;
      }
      .consent-title {
        font-size: 1.8rem;
      }
    } */
  
               /* updated css   */
       /* Responsive adjustments */
    @media (max-width: 1100px) {
      .consent-wrapper { 
        max-width: 98vw; 
        padding: 30px 10vw; 
      }
    }
    @media (max-width: 900px) {
      .consent-wrapper {
        padding: 25px 5vw;
        margin: 30px 2vw;
      }
    }
    @media (max-width: 650px) {
      .consent-wrapper {
        padding: 12px 2vw;
        margin: 10px 2vw;
        border-radius: 11px;
      }
      .consent-title {
        font-size: 1.3rem;
      }
      .consent-section h3 {
        font-size: 1.08rem;
        padding-left: 7px;
        border-width: 3px;
      }
      .contact-box {
        padding: 10px ;
        border-radius: 6px;
        margin-top: 26px;
      }
      .contact-box li {
        font-size: 0.95rem;
        margin-bottom: 10px;
      }
      .contact-box i {
        font-size: 1rem;
        width: 18px;
      }
      .back-btn {
        font-size: 0.97rem;
        padding: 8px 12px;
        border-radius: 6px;
      }
      .last-updated {
        font-size: 0.88rem;
      }
    }

