header{
    margin-top: -20px;
}

.category-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eaeaea;
  }
  
  .category-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
  }
  
  .category-content h5 {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .category-content p {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  
  .category-content .btn {
    align-self: center;
    width: 100%;
  }
.footer{
  top: 100px;
}
.actions {
  flex-direction: column;
  gap: 3px;
}
.catch-line {
  font-size: 14px;
  font-weight: 500;
  color: black;
  margin-top: -4px;
  margin-bottom: 10px;
  font-style: italic;
}
