.category-section {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .category {
    flex: 0 0 calc(33.333% - 40px);
    margin: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #8a63d2;
  }

  .category-name {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .category-description {
    color: #666;
    font-size: 16px;
  }