.categories-section {
    padding: 60px 0;
    background-color: #f8f9fa;
  }
  
  .categories-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #373e4eff;
  }
  
  .category-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .category-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .category-title {
    font-size: 1.5rem;
    color: #373e4eff;
    margin-bottom: 10px;
  }
  
  .category-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .category-card .btn {
    background-color: #f19216ff;
    border-color: #f19216ff;
    color: #fff;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .category-card .btn:hover {
    background-color: #e07b00;
    border-color: #e07b00;
  }
  