<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Healthcare Revolution Section */
.privacy {
    background: #fff; /* Light gray background */
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

/* Gray Container with Rounded Corners */
.privacy .privacy-container {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.privacy .section-title {
    text-align: center;
}

.privacy .section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
}

.privacy .section-title .highlight {
    background: linear-gradient(to right, #6666FE, #0DE0B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* General Table Styling */
.privacy table {
    width: 100%; /* Full-width table */
    border-collapse: collapse; /* Ensure borders don't double up */
    margin: 20px 0; /* Add space above and below the table */
    font-family: Arial, sans-serif; /* Optional: Set font */
    font-size: 14px; /* Adjust font size */
  }
  
  /* Table Borders */
  .privacy  table, th, td {
    border: 1px solid #ddd; /* Add borders to table, headers, and cells */
  }
  
  /* Header Styling */
  .privacy thead th {
    background-color: #f4f4f4; /* Light gray background for headers */
    color: #333; /* Text color for headers */
    text-align: left; /* Align header text to the left */
    padding: 10px; /* Add padding inside header cells */
  }
  
  /* Cell Styling */
  .privacy td {
    padding: 10px; /* Add padding inside cells */
    text-align: left; /* Align text to the left */
  }
  
  /* Zebra Stripes for Rows */
  .privacy tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for alternate rows */
  }
  
  /* Hover Effect for Rows */
  .privacy tr:hover {
    background-color: #f1f1f1; /* Slightly darker gray on hover */
  }
</pre></body></html>