  .testimonial-page {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      max-width: 1000px;
      margin: 0 auto 0 30px; /* top right bottom left */
      padding: 20px;
      background-color: #f9f9f9;
  }
  
  .header {
      text-align: center;
      margin-bottom: 40px;
  }
  
  .testimonial-page h1 {
      color: #2c3e50;
      font-size: 2.5em;
      margin-bottom: 10px;
  }
  
  .subtitle {
      color: #7f8c8d;
      font-size: 1.2em;
      margin-bottom: 30px;
  }
  
  .testimonial-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
  }
  
  .testimonial {
      background: white;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }
  
  .testimonial:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-title {
      color: #e74c3c;
      font-weight: 600;
      font-size: 1.2em;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
  }
  
  .testimonial-title .icon {
      margin-right: 10px;
      font-size: 1.4em;
  }
  
  .testimonial-content {
      font-style: italic;
      color: #555;
      margin-bottom: 15px;
  }
  
  .why-alltop {
      background: #2c3e50;
      color: white;
      padding: 30px;
      border-radius: 8px;
      margin-top: 40px;
  }
  
  .why-alltop h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.8em;
      color: white;
  }
  
  .benefits-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  
  .benefit-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
  }
  
  .benefit-item .check {
      color: #2ecc71;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      flex-shrink: 0;
  }
  
  .benefit-text {
      flex-grow: 1;
  }
  
  .cta {
      text-align: center;
      margin-top: 40px;
      font-size: 1.3em;
      font-weight: 600;
      color: #2c3e50;
  }
  
  .notice {
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.5s ease;
  }

  @media (max-width: 768px) {
      .testimonial-container {
          grid-template-columns: 1fr;
      }
      
      .why-alltop {
          padding: 20px;
      }
}