
  .pdp-container {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pdp-container h2 {
    font-size: 18px !important;
    font-weight: bold;
    color: #111111;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ba372a;
  }
  .pdp-container h3 {
    font-size: 16px !important;
    font-weight: bold;
    color: #ba372a;
    margin-top: 15px;
    margin-bottom: 8px;
  }
  .pdp-container p {
    font-size: 16px !important;
    margin-bottom: 15px;
  }
  
  /* Feature Grid */
  .feature-list {
    margin-bottom: 20px;
  }
  .feature-item {
    margin-bottom: 15px;
  }
  .feature-title {
    color: #ba372a;
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }

  /* Image Layouts */
  .img-flex-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
    justify-content: center;
  }
  .img-flex-group img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
  }
  .img-center {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
  }

  /* Table Styles */
  .pdp-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
  }
  .pdp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
  }
  .pdp-table th {
    background-color: #f4f4f4;
    color: #111;
    padding: 12px;
    text-align: center;
    border: 1px solid #dddddd;
    font-weight: bold;
  }
  .pdp-table td {
    padding: 12px;
    border: 1px solid #dddddd;
    vertical-align: middle;
  }
  .pdp-table td.text-center {
    text-align: center;
  }

  /* Customized List */
  .custom-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding-left: 20px;
    margin: 15px 0;
    font-size: 16px;
  }

  /* FAQ Block */
  .faq-block {
    margin-bottom: 20px;
  }
  .faq-question {
    color: #ba372a;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
  }

  /* Call To Action Box */
  .cta-banner {
    background-color: #fff4f3;
    border: 1px solid #f2c6c2;
    border-left: 5px solid #ba372a;
    padding: 24px;
    border-radius: 4px;
    margin-top: 30px;
    text-align: center;
  }
  .cta-button {
    display: inline-block;
    background-color: #ba372a;
    color: #ffffff !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 12px;
    transition: background-color 0.3s;
  }
  .cta-button:hover {
    background-color: #962a1f;
  }
