.testimonial_container {
    display: flex;
    justify-content: center;
    margin: 0px auto 0px auto;
    padding: 0 20px;
  }
  
  .description {
    max-width: 1200px;
    width: 100%;
    padding: 10px;
  }
  
  .testimonial_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    
  }
  
  /* Testimonial Section */
  .testimonial {
    flex: 2;
    min-width: 300px;
  }
  
  .testimonial_carousel {
    position: relative;
  }
  
  .testimonial_carousel .card,
  .testimonial_carousel .current_card {
    display: none;
    background-color: #f4deb2d1;
    border: solid 2px #a7956a;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .testimonial_carousel .current_card {
    display: block;
  }
  
  .testimonial_carousel span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-style: italic;
  }
  
  /* Controls */
  .testimonial-controls {
    text-align: center;
    margin-top: 10px;
  }
  
  .testimonial-controls button {
    background-color: #ccc;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 4px;
  }
  
  .testimonial-controls button:hover {
    background-color: #aaa;
  }
  
  /* Photo Section */
  .photo-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .photo-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Responsive behavior */
  @media screen and (max-width: 900px) {
    .testimonial_content {
      flex-direction: column;
      align-items: center;
    }
  
    .testimonial,
    .photo-box {
      width: 100%;
      text-align: center;
    }
  
    .testimonial-controls {
      justify-content: center;
    }
  }
  