#erm-testimonials-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
  }
  
  .erm-test-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .ptext {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  .erm-test-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .erm-test-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #4E1120;
  }
  
  .erm-test-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .erm-test-card:hover {
    transform: translateY(-5px);
  }
  
  .erm-test-header {
    background-color: #4E1120;
    padding: 1.25rem 1.5rem;
  }
  
  .erm-test-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.4;
  }
  
  .erm-test-content {
    display: flex;
    flex-wrap: wrap;
  }
  
  .erm-test-video {
    flex: 0 0 50%;
  }
  
  .erm-test-video iframe {
    width: 100%;
    height: 300px;
    border: none;
  }
  
  .erm-test-text {
    flex: 0 0 50%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .erm-test-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .erm-test-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #4E1120;
  }
  
  .erm-test-name {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    color: #4E1120;
  }
  
  .erm-test-role {
    display: block;
    font-size: 0.9rem;
    color: #666;
  }
  
  .erm-test-quote {
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .erm-test-quote::before {
    content: '"';
    font-size: 3rem;
    color: #4E1120;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    opacity: 0.2;
  }
  
  @media (max-width: 900px) {
    .erm-test-content {
      flex-direction: column;
    }
    
    .erm-test-video, .erm-test-text {
      flex: 0 0 100%;
    }
    
    .erm-test-video iframe {
      height: 250px;
    }
  }
  
  @media (max-width: 600px) {
    .erm-test-title {
      font-size: 2rem;
    }
  
    .erm-test-header h3 {
      font-size: 1.2rem;
    }
  
    .erm-test-video iframe {
      height: 200px;
    }
  
    .erm-test-text {
      padding: 1.25rem;
    }
  
    .erm-test-quote {
      font-size: 0.9rem;
    }
  
    .erm-test-img {
      width: 60px;
      height: 60px;
    }
  
    .erm-test-name {
      font-size: 1rem;
    }
  
    .erm-test-role {
      font-size: 0.85rem;
    }
  }