.review-gallery {
  margin-top: 150px;
    padding: 60px 20px;
    background-color: #fff0f5; /* ชมพูอ่อนนุ่มๆ */
    text-align: center;
  }
  
  .section-title {
    font-size: 2.2rem;
    color: #ff0000;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  .review-card {
    background: #a10000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .review-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(216, 27, 96, 0.2);
  }
  
  .review-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }












  
  
  