:root {
      --vhm-navy: #102A43;
      --vhm-orange: #D65A00;
      --vhm-red: #D62828;
      --vhm-white: #FFFFFF;
      --vhm-gray: #667085;
      --vhm-cream: #FFF7D6;
      --vhm-skyblue: #E3F2FD;
      --vhm-green: #2E7D32;
      --vhm-yellow: #FFD60A;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #f8f9ff;
      color: var(--vhm-navy);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Montserrat', sans-serif;
    }

    .blog-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
      color: var(--vhm-navy);
    }

    .blog-content h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-top: 2rem;
      margin-bottom: 0.8rem;
      color: var(--vhm-orange);
    }

    .blog-content p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      color: #4a5568;
    }

    .blog-content ul {
      list-style-type: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }

    .blog-content ul li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.8rem;
      color: #4a5568;
      line-height: 1.6;
    }

    .blog-content ul li::before {
      content: '•';
      color: var(--vhm-orange);
      font-weight: bold;
      position: absolute;
      left: 0;
      font-size: 1.2rem;
    }

    .blog-content a {
      color: var(--vhm-red);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid var(--vhm-red);
    }

    .blog-content a:hover {
      color: var(--vhm-orange);
      border-bottom-color: var(--vhm-orange);
    }

    .card-hover:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(16, 42, 67, 0.1);
      transition: all 0.3s ease;
    }

    .quote-box {
      background: var(--vhm-cream);
      border-left: 4px solid var(--vhm-orange);
      padding: 1.5rem;
      border-radius: 0 8px 8px 0;
      margin: 2rem 0;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--vhm-navy);
    }

    .toc-link:hover {
      color: var(--vhm-orange);
    }

    /* Responsive Table Styles */
    .comparison-table-wrapper {
      width: 100%;
      overflow-x: auto;
      margin: 2.5rem 0;
      border-radius: 12px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
      background-color: #fff;
    }

    .comparison-table th {
      background-color: var(--vhm-navy);
      color: white;
      font-family: 'Montserrat', sans-serif;
      padding: 1rem;
      text-align: left;
      font-weight: 600;
    }

    .comparison-table th:first-child {
      border-top-left-radius: 12px;
    }

    .comparison-table th:last-child {
      border-top-right-radius: 12px;
      background-color: var(--vhm-red);
    }

    .comparison-table td {
      padding: 1rem;
      border-bottom: 1px solid #e2e8f0;
      color: #4a5568;
    }

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

    .comparison-table td:nth-child(2) {
      background-color: #f8fafc;
      color: #64748b;
      font-style: italic;
    }

    .comparison-table td:nth-child(3) {
      background-color: #fffaf0;
      font-weight: 600;
      color: var(--vhm-navy);
    }