
  /* Global Layout Optimization */
  .blog-content-wrapper {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Heading 2: Major Section Divider (Visual Hierarchy) */
  .blog-content-wrapper h2 {
    font-size: 22px; /* Slightly larger for clarity */
    font-weight: 700;
    color: #000;
    margin-top: 40px; /* Use whitespace for separation instead of lines */
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #d32f2f; /* Fuji Red underline */
    display: inline-block; /* Underline only text width */
    width: auto;
  }
  
  /* Heading 3 */
  .blog-content-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-top: 25px;
    margin-bottom: 12px;
  }
  
  /* Heading 4 */
  .blog-content-wrapper h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #555;
  }

  /* Compact Content Flow */
  .blog-content-wrapper p {
    margin-bottom: 15px;
    text-align: justify;
  }

  .blog-content-wrapper ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }

  .blog-content-wrapper li {
    margin-bottom: 8px;
  }

  /* Image Style */
  .blog-content-wrapper img {
    max-width: 600px; 
    width: 100%;      
    height: auto;     
    display: block;   
    margin: 30px auto; /* Increased margin for natural breathing room */
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  /* Table Style */
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .comparison-table th, .comparison-table td {
    border: 1px solid #e0e0e0; /* Lighter border */
    padding: 12px 15px;
    text-align: left;
  }
  .comparison-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: #333;
  }

  /* FAQ Box Style */
  .faq-section {
    background-color: #fafafa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #eee;
  }
  
  .faq-section h3 {
    margin-top: 0;
    color: #d32f2f;
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .blog-content-wrapper { padding: 0 5px; }
    .blog-content-wrapper h2 { 
      font-size: 20px; 
      margin-top: 30px; 
      border-bottom-width: 2px;
    }
    .comparison-table {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }
