
  .custom-review-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
  }
  .custom-review-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .custom-review-header h2 {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .custom-review-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
  }
  .custom-review-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 8px;
    color: #0056b3;
  }
  .custom-review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .custom-review-card {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  @media (max-width: 768px) {
    .custom-review-card {
      flex: 1 1 100%;
    }
  }
  .custom-review-quote {
    font-size: 14.5px;
    color: #334155;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
  }
  .custom-review-quote::before {
    content: "“";
    font-size: 32px;
    color: #94a3b8;
    line-height: 0;
    vertical-align: -12px;
    margin-right: 4px;
  }
  .custom-review-quote::after {
    content: "”";
    font-size: 32px;
    color: #94a3b8;
    line-height: 0;
    vertical-align: -12px;
    margin-left: 4px;
  }
  .custom-review-author {
    border-top: 1px dashed #cbd5e1;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .custom-review-author-info {
    font-size: 13.5px;
  }
  .custom-review-author-name {
    font-weight: bold;
    color: #0f172a;
  }
  .custom-review-author-title {
    color: #64748b;
  }
  .custom-review-badge {
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
  }
  .custom-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .custom-summary-table th, .custom-summary-table td {
    border: 1px solid #cbd5e1;
    padding: 12px;
    text-align: left;
  }
  .custom-summary-table th {
    background-color: #f1f5f9;
    font-weight: bold;
    color: #1e293b;
  }
