<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.elementor-6409 .elementor-element.elementor-element-5838306{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cc68b89 *//* --- General Article Styles --- */
.flixus-article-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.flixus-article-container h1,
.flixus-article-container h2,
.flixus-article-container h3 {
  color: #1a1a1a;
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.flixus-article-container h1 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 25px;
}

.flixus-article-container h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.flixus-article-container h3 {
  font-size: 1.4rem;
}

.flixus-article-container p {
  margin-bottom: 1rem;
}

.flixus-article-container strong {
  color: #000;
}

.flixus-article-container a {
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.flixus-article-container a:hover {
  color: #7e57c2; /* A slightly lighter purple for the hover effect */
  text-decoration: underline;
}

/* FIX FOR BOLD LINKS */
.flixus-article-container a strong {
  color: inherit; /* This makes it inherit the purple color from the parent &lt;a&gt; tag */
}


.flixus-article-container ul, .flixus-article-container ol {
  margin-left: 20px;
  margin-bottom: 1rem;
  padding-left: 20px;
}

.flixus-article-container li {
  margin-bottom: 10px;
}

/* --- Call to Action Button --- */
.cta-button {
  display: block;
  width: fit-content;
  background-color: #ff5722; /* A vibrant orange CTA color */
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 30px;
  margin: 40px auto;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  text-decoration: none;
  color: #ffffff; 
}

/* --- Comparison Table Styles for Desktop --- */
.table-wrapper {
  margin: 30px 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden; /* Helps contain border-radius */
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background-color: #f7f7f7;
  font-size: 1.1rem;
  color: #333;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: bold;
}

/* --- FAQ Section --- */
.faq-section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.faq-section h3 {
  color: #333; 
  font-weight: bold;
  margin-bottom: 5px;
}


/* ==============================================
MOBILE RESPONSIVE STYLES 
==============================================
*/
@media screen and (max-width: 767px) {
  .flixus-article-container {
    padding: 15px;
  }
  
  .flixus-article-container h1 {
    font-size: 1.8rem;
  }

  .flixus-article-container h2 {
    font-size: 1.5rem;
  }

  .flixus-article-container h3 {
    font-size: 1.2rem;
  }

  /* --- STACKING RESPONSIVE TABLE --- */
  .comparison-table {
      border: none; /* Remove table border */
      border-radius: 0;
  }
  
  .comparison-table thead {
    /* Hide the table header on mobile */
    display: none;
  }

  .comparison-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* To keep the border-radius on cells */
  }
  
  .comparison-table td {
    display: block;
    text-align: right; /* Align cell content to the right */
    padding-left: 50%; /* Create space for the label */
    position: relative;
    border-bottom: 1px solid #eee;
  }
  
  .comparison-table td:last-child {
      border-bottom: none; /* Remove border from last cell in a row-card */
  }

  /* Use pseudo-element to create the label */
  .comparison-table td::before {
    content: attr(data-label); /* Use the data-label from HTML */
    position: absolute;
    left: 10px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #333;
  }
}/* End custom CSS */</pre></body></html>