 .erp-visual {
      margin: 2rem 0;
      text-align: center;
    }
    
    .erp-visual img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .caption {
      font-size: 0.9rem;
      color: #6c757d;
      margin-top: 0.5rem;
      text-align: center;
    }
    
    /* Functions Grid */
    .functions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .function-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      border-top: 3px solid #3a86ff;
    }
    
    .function-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .function-icon {
      width: 50px;
      height: 50px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      color: #3a86ff;
      font-size: 1.2rem;
    }
    
    .function-card h4 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .function-card p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .benefit-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .benefit-number {
      background: #3a86ff;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }
    
    .benefit-content h3 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .benefit-content p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* Statistics Box */
    .statistics-box {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin: 2rem 0;
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #3a86ff;
      line-height: 1;
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: #6c757d;
    }
    
    /* Case Study */
    .case-study {
      background: #f8f9fa;
      border-left: 4px solid #3a86ff;
      padding: 20px;
      border-radius: 0 8px 8px 0;
      margin: 2rem 0;
    }
    
    .case-study h3 {
      margin-top: 0;
      color: #2c3e50;
    }
    
    /* AI Features Grid */
    .ai-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .ai-feature {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      position: relative;
      transition: transform 0.3s ease;
      border-top: 3px solid #3a86ff;
    }
    
    .ai-feature.highlighted {
      border-top: 3px solid #2ecc71;
    }
    
    .ai-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .ai-icon {
      width: 50px;
      height: 50px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      color: #3a86ff;
      font-size: 1.2rem;
    }
    
    .ai-feature.highlighted .ai-icon {
      background: #e8f5e9;
      color: #2ecc71;
    }
    
    .ai-feature h3 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .ai-feature p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* AI Impact Comparison */
    .ai-impact {
      margin: 3rem 0;
    }
    
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .comparison-col {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .comparison-col.highlighted {
      border: 2px solid #2ecc71;
      box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
    }
    
    .comparison-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .comparison-header i {
      font-size: 1.5rem;
      margin-right: 10px;
    }
    
    .comparison-header h4 {
      margin: 0;
      color: #2c3e50;
    }
    
    .comparison-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .comparison-list li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
    }
    
    .comparison-list li i {
      margin-right: 10px;
    }
    
    .comparison-list .fa-check {
      color: #2ecc71;
    }
    
    .comparison-list .fa-times {
      color: #e74c3c;
    }
    
    /* ERP Selection Factors */
    .erp-selection-factors {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .factor-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
      position: relative;
    }
    
    .factor-card.highlighted {
      border: 2px solid #d4af37;
    }
    
    .factor-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .factor-icon {
      width: 50px;
      height: 50px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      color: #3a86ff;
      font-size: 1.2rem;
    }
    
    .factor-card h3 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .factor-card p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* Mistakes Grid */
    .mistakes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .mistake-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    
    .mistake-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .mistake-icon {
      width: 40px;
      height: 40px;
      background: #fff8e1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      color: #ffab00;
      font-size: 1rem;
    }
    
    .mistake-card h4 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .mistake-card p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* PL Process */
    .pl-process {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .process-step {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      position: relative;
      transition: transform 0.3s ease;
    }
    
    .process-step.highlighted {
      border: 2px solid #3a86ff;
    }
    
    .process-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .step-number {
      width: 40px;
      height: 40px;
      background: #3a86ff;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }
    
    .process-step.highlighted .step-number {
      background: #2ecc71;
    }
    
    .process-step h3 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .process-step p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* PL Benefits */
    .pl-benefits {
      margin: 3rem 0;
    }
    
    .pl-benefits h3 {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .pl-benefits .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .pl-benefits .benefit-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    .pl-benefits .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .pl-benefits .benefit-icon {
      width: 60px;
      height: 60px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      color: #3a86ff;
      font-size: 1.5rem;
    }
    
    .pl-benefits .benefit-card h4 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .pl-benefits .benefit-card p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* Industry Solutions */
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin: 2rem 0;
    }
    
    .industry-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    .industry-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .industry-icon {
      width: 50px;
      height: 50px;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      color: #3a86ff;
      font-size: 1.2rem;
    }
    
    .industry-card h4 {
      margin: 0 0 10px 0;
      color: #2c3e50;
    }
    
    .industry-card p {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin: 0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .comparison-grid {
        grid-template-columns: 1fr;
      }
      
      .process-step {
        margin-bottom: 20px;
      }
    }
    
    @media (max-width: 480px) {
      .functions-grid,
      .benefits-grid,
      .ai-features-grid,
      .erp-selection-factors,
      .mistakes-grid,
      .pl-process,
      .pl-benefits .benefits-grid,
      .industry-grid {
        grid-template-columns: 1fr;
      }
    }